From 7cbcf652c51d283ac55b898c60ea39e45a48e5dd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 2 May 2010 15:53:14 +0200 Subject: s4-ldb: use a parent context in the ldb utils This avoids a talloc free with references error on exit --- source4/lib/ldb/tools/ldbmodify.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/tools/ldbmodify.c') diff --git a/source4/lib/ldb/tools/ldbmodify.c b/source4/lib/ldb/tools/ldbmodify.c index 57988cbb30..ecbdadfd65 100644 --- a/source4/lib/ldb/tools/ldbmodify.c +++ b/source4/lib/ldb/tools/ldbmodify.c @@ -94,8 +94,9 @@ int main(int argc, const char **argv) struct ldb_context *ldb; int count=0; int i, ret=LDB_SUCCESS; + TALLOC_CTX *mem_ctx = talloc_new(NULL); - ldb = ldb_init(NULL, NULL); + ldb = ldb_init(mem_ctx, NULL); options = ldb_cmdline_process(ldb, argc, argv, usage); @@ -115,7 +116,7 @@ int main(int argc, const char **argv) } } - talloc_free(ldb); + talloc_free(mem_ctx); printf("Modified %d records with %d failures\n", count, failures); -- cgit