summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-12-31 12:41:24 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-12-31 12:41:24 +0000
commit85c5b3c315ee3899ad13b5f9dcbd61cdec6d30a5 (patch)
tree91e69689ef5025cebbe2609dfe410be417476d47 /source3/rpc_parse
parent8e4e261471c4e10d50519155f49913eff79ff842 (diff)
downloadsamba-85c5b3c315ee3899ad13b5f9dcbd61cdec6d30a5.tar.gz
samba-85c5b3c315ee3899ad13b5f9dcbd61cdec6d30a5.tar.bz2
samba-85c5b3c315ee3899ad13b5f9dcbd61cdec6d30a5.zip
Give the main loop talloc context a name (using mbp's new talloc naming
system). Andrew Bartlett (This used to be commit f0c301a12eb142add488a2da55591269dfc15f77)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r--source3/rpc_parse/parse_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c
index 52e4b4b07c..d2e2e3cf26 100644
--- a/source3/rpc_parse/parse_misc.c
+++ b/source3/rpc_parse/parse_misc.c
@@ -61,7 +61,7 @@ void main_loop_talloc_free(void)
TALLOC_CTX *main_loop_talloc_get(void)
{
if (!main_loop_talloc) {
- main_loop_talloc = talloc_init();
+ main_loop_talloc = talloc_init_named("main loop talloc (mainly parse_misc)");
if (!main_loop_talloc)
smb_panic("main_loop_talloc: malloc fail\n");
}