summaryrefslogtreecommitdiff
path: root/source3/groupdb
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-05-21 18:48:17 -0700
committerJeremy Allison <jra@samba.org>2009-05-21 18:48:17 -0700
commit53de3b136edbb0b8e7c3a0293dce657cf732f1d2 (patch)
treedcea568e9b939077503e035fa56c0c2bf6064d42 /source3/groupdb
parent5dd82fb675dd7ec48604748e25b0b8090b360506 (diff)
downloadsamba-53de3b136edbb0b8e7c3a0293dce657cf732f1d2.tar.gz
samba-53de3b136edbb0b8e7c3a0293dce657cf732f1d2.tar.bz2
samba-53de3b136edbb0b8e7c3a0293dce657cf732f1d2.zip
Don't steal when we know the ptr will be null. Thanks to Simo for
pointing this out. Jeremy.
Diffstat (limited to 'source3/groupdb')
-rw-r--r--source3/groupdb/mapping_ldb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/groupdb/mapping_ldb.c b/source3/groupdb/mapping_ldb.c
index 27a6c3e0a0..3fbc1829cd 100644
--- a/source3/groupdb/mapping_ldb.c
+++ b/source3/groupdb/mapping_ldb.c
@@ -510,12 +510,11 @@ static NTSTATUS enum_aliasmem(const DOM_SID *alias, DOM_SID **sids, size_t *num)
ret = ldb_search(ldb, ldb, &res, dn, LDB_SCOPE_BASE, attrs, NULL);
if (ret == LDB_SUCCESS && res->count == 0) {
- talloc_steal(dn, res);
+ talloc_free(res);
talloc_free(dn);
return NT_STATUS_OK;
}
if (ret != LDB_SUCCESS) {
- talloc_steal(dn, res);
talloc_free(dn);
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}