summaryrefslogtreecommitdiff
path: root/source4/scripting/ejs
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-11-16 09:34:19 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:28:15 -0500
commit84138215cade4bd427a4a04810696cbb89434928 (patch)
tree5b277d32e2f9efc98c63e1ba310f3f6575f663b5 /source4/scripting/ejs
parentadae413042e15e7228bcc25321913b38ae61358a (diff)
downloadsamba-84138215cade4bd427a4a04810696cbb89434928.tar.gz
samba-84138215cade4bd427a4a04810696cbb89434928.tar.bz2
samba-84138215cade4bd427a4a04810696cbb89434928.zip
r19732: The 'res' from ldb_search is only valid if the call returns LDB_SUCCESS.
This seems to show up (as an abort() from talloc) particularly under ldb_ildap. Andrew Bartlett (This used to be commit 9890af534d845d471d2a98268c408a907b29e016)
Diffstat (limited to 'source4/scripting/ejs')
-rw-r--r--source4/scripting/ejs/smbcalls_ldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/ejs/smbcalls_ldb.c b/source4/scripting/ejs/smbcalls_ldb.c
index f8296b9d36..0af9738b60 100644
--- a/source4/scripting/ejs/smbcalls_ldb.c
+++ b/source4/scripting/ejs/smbcalls_ldb.c
@@ -111,8 +111,8 @@ static int ejs_ldbSearch(MprVarHandle eid, int argc, struct MprVar **argv)
mpr_Return(eid, mprCreateUndefinedVar());
} else {
mpr_Return(eid, mprLdbArray(ldb, res->msgs, res->count, "ldb_message"));
+ talloc_free(res);
}
- talloc_free(res);
talloc_free(tmp_ctx);
return 0;