summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-09-24 18:52:04 -0700
committerKarolin Seeger <kseeger@samba.org>2008-09-25 07:15:18 -0700
commitf27774729e8c88615b9d3d25a85cae0a1fc35c4f (patch)
treeaed864ba6b360b8c79a84d955c9cc216a471bf8a /source3
parent0cf717512659469a9b293685ba2a6db4742dcff7 (diff)
downloadsamba-f27774729e8c88615b9d3d25a85cae0a1fc35c4f.tar.gz
samba-f27774729e8c88615b9d3d25a85cae0a1fc35c4f.tar.bz2
samba-f27774729e8c88615b9d3d25a85cae0a1fc35c4f.zip
s3:lib/ldb: Don't return already freed pointer on error.
metze Signed-off-by: Karolin Seeger <kseeger@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/ldb/common/ldb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/ldb/common/ldb.c b/source3/lib/ldb/common/ldb.c
index 743711b967..c8aa6afdfc 100644
--- a/source3/lib/ldb/common/ldb.c
+++ b/source3/lib/ldb/common/ldb.c
@@ -787,6 +787,7 @@ int ldb_search(struct ldb_context *ldb,
done:
if (ret != LDB_SUCCESS) {
talloc_free(res);
+ res = NULL;
}
*_res = res;