Give the main loop talloc context a name (using mbp's new talloc naming
authorAndrew Bartlett <abartlet@samba.org>
Mon, 31 Dec 2001 12:41:24 +0000 (12:41 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 31 Dec 2001 12:41:24 +0000 (12:41 +0000)
system).

Andrew Bartlett
(This used to be commit f0c301a12eb142add488a2da55591269dfc15f77)

source3/rpc_parse/parse_misc.c

index 52e4b4b07c6dab5f93f84882b6c647010fcd1463..d2e2e3cf2645da1f96d9f62b35caf63cea54218e 100644 (file)
@@ -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");
     }