From: Jeremy Allison Date: Fri, 22 May 2009 01:48:17 +0000 (-0700) Subject: Don't steal when we know the ptr will be null. Thanks to Simo for X-Git-Tag: tdb-1.1.5~427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53de3b136edbb0b8e7c3a0293dce657cf732f1d2;p=thirdparty%2Fsamba.git Don't steal when we know the ptr will be null. Thanks to Simo for pointing this out. Jeremy. --- diff --git a/source3/groupdb/mapping_ldb.c b/source3/groupdb/mapping_ldb.c index 27a6c3e0a00..3fbc1829cde 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; }