From 85c5b3c315ee3899ad13b5f9dcbd61cdec6d30a5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 31 Dec 2001 12:41:24 +0000 Subject: Give the main loop talloc context a name (using mbp's new talloc naming system). Andrew Bartlett (This used to be commit f0c301a12eb142add488a2da55591269dfc15f77) --- source3/rpc_parse/parse_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_parse') 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"); } -- cgit