diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-29 12:34:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:51 -0500 |
commit | 6eabad9c9d977c1c5c6ecf7494a0be42ad113d23 (patch) | |
tree | 96a9cf1b04fb6fe460f734cc53df409c65daa7a0 /source4/lib/ldb/ldb_ildap/ldb_ildap.c | |
parent | b77685a4ae40e6619d82af98e0def173b4f4b7ec (diff) | |
download | samba-6eabad9c9d977c1c5c6ecf7494a0be42ad113d23.tar.gz samba-6eabad9c9d977c1c5c6ecf7494a0be42ad113d23.tar.bz2 samba-6eabad9c9d977c1c5c6ecf7494a0be42ad113d23.zip |
r11958: - fixed memory leaks in the ldb_result handling in ldb operations
- removed an unnecessary level of pointer in ldb_search structure
(This used to be commit b8d4afb14a18dfd8bac79882a035e74d3ed312bd)
Diffstat (limited to 'source4/lib/ldb/ldb_ildap/ldb_ildap.c')
-rw-r--r-- | source4/lib/ldb/ldb_ildap/ldb_ildap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_ildap/ldb_ildap.c b/source4/lib/ldb/ldb_ildap/ldb_ildap.c index cc9b5e65db..e195ec24aa 100644 --- a/source4/lib/ldb/ldb_ildap/ldb_ildap.c +++ b/source4/lib/ldb/ldb_ildap/ldb_ildap.c @@ -407,7 +407,7 @@ static int ildb_request(struct ldb_module *module, struct ldb_request *req) req->op.search.scope, req->op.search.tree, req->op.search.attrs, - req->op.search.res); + &req->op.search.res); case LDB_REQ_ADD: return ildb_add(module, req->op.add.message); |