From 80ae1c2a2aeace891d24390f2f639a3c3d18739a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 4 Jul 2007 03:25:44 +0000 Subject: r23695: By not using the NULL context for these large structures, we don't falsely report them as leaked. Andrew Bartlett (This used to be commit e3eb6c2cf63edf50d93a87f656df3ae5aa6efc00) --- source4/dsdb/schema/schema_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/schema/schema_init.c') diff --git a/source4/dsdb/schema/schema_init.c b/source4/dsdb/schema/schema_init.c index c7a7b59754..bf82b0b189 100644 --- a/source4/dsdb/schema/schema_init.c +++ b/source4/dsdb/schema/schema_init.c @@ -1061,7 +1061,7 @@ void dsdb_make_schema_global(struct ldb_context *ldb) return; } - talloc_steal(NULL, schema); + talloc_steal(talloc_autofree_context(), schema); global_schema = schema; } -- cgit