diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-05-02 15:53:14 +0200 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-05-02 18:25:13 +0200 |
commit | 7cbcf652c51d283ac55b898c60ea39e45a48e5dd (patch) | |
tree | 54a54125a0fab5f3cd96a03bb0235c5c1d39fcde /source4/lib/ldb/tools/ldbedit.c | |
parent | df6d0db21d31dee1bc51c3a0703e1ad9ab5f028b (diff) | |
download | samba-7cbcf652c51d283ac55b898c60ea39e45a48e5dd.tar.gz samba-7cbcf652c51d283ac55b898c60ea39e45a48e5dd.tar.bz2 samba-7cbcf652c51d283ac55b898c60ea39e45a48e5dd.zip |
s4-ldb: use a parent context in the ldb utils
This avoids a talloc free with references error on exit
Diffstat (limited to 'source4/lib/ldb/tools/ldbedit.c')
-rw-r--r-- | source4/lib/ldb/tools/ldbedit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/ldb/tools/ldbedit.c b/source4/lib/ldb/tools/ldbedit.c index 4c5683cd83..1866cc373e 100644 --- a/source4/lib/ldb/tools/ldbedit.c +++ b/source4/lib/ldb/tools/ldbedit.c @@ -284,8 +284,9 @@ int main(int argc, const char **argv) int ret; const char *expression = "(|(objectClass=*)(distinguishedName=*))"; const char * const * attrs = NULL; + 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); @@ -330,6 +331,7 @@ int main(int argc, const char **argv) } } - talloc_free(ldb); + talloc_free(mem_ctx); + return 0; } |