diff options
author | Simo Sorce <idra@samba.org> | 2006-10-16 12:03:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:11 -0500 |
commit | 549dd10f0f4bbc15c47a6da885db5d802b0a9a24 (patch) | |
tree | e08efe11251923a8ef9166a1ccaf20f0762a724d /source4/lib/ldb/modules | |
parent | 1695408407a5c4222554ed40c839c0c27c6df37c (diff) | |
download | samba-549dd10f0f4bbc15c47a6da885db5d802b0a9a24.tar.gz samba-549dd10f0f4bbc15c47a6da885db5d802b0a9a24.tar.bz2 samba-549dd10f0f4bbc15c47a6da885db5d802b0a9a24.zip |
r19332: ldb_parse_tree leaks
(This used to be commit 3e0e2787c1da1c3831e21b163e1370001d725a3d)
Diffstat (limited to 'source4/lib/ldb/modules')
-rw-r--r-- | source4/lib/ldb/modules/objectclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/objectclass.c b/source4/lib/ldb/modules/objectclass.c index 493ecdaad4..e4040a8e3d 100644 --- a/source4/lib/ldb/modules/objectclass.c +++ b/source4/lib/ldb/modules/objectclass.c @@ -464,7 +464,7 @@ static int objectclass_search_self(struct ldb_handle *h) { ac->search_req->operation = LDB_SEARCH; ac->search_req->op.search.base = ac->orig_req->op.mod.message->dn; ac->search_req->op.search.scope = LDB_SCOPE_BASE; - ac->search_req->op.search.tree = ldb_parse_tree(ac->module->ldb, NULL); + ac->search_req->op.search.tree = ldb_parse_tree(ac->search_req, NULL); if (ac->search_req->op.search.tree == NULL) { ldb_set_errstring(ac->module->ldb, "objectclass: Internal error producing null search"); return LDB_ERR_OPERATIONS_ERROR; |