mirror of
https://github.com/samba-team/samba.git
synced 2025-03-27 22:50:26 +03:00
ldb-samba: fix a memory leak in ldif_canonicalise_objectCategory()
Searches for '(objectCategory=Person)' will leak a ldb_dn structure on the ldb_context. These searches are typically used by Zarafa. Bug: https://bugzilla.samba.org/show_bug.cgi?id=10469 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Thu Jul 17 00:51:57 CEST 2014 on sn-devel-104
This commit is contained in:
parent
dff649f3e7
commit
8d33cddcb0
@ -483,8 +483,13 @@ static int ldif_canonicalise_objectCategory(struct ldb_context *ldb, void *mem_c
|
||||
const char *lDAPDisplayName = talloc_strndup(tmp_ctx, (char *)in->data, in->length);
|
||||
sclass = dsdb_class_by_lDAPDisplayName(schema, lDAPDisplayName);
|
||||
if (sclass) {
|
||||
struct ldb_dn *dn = ldb_dn_new(mem_ctx, ldb,
|
||||
struct ldb_dn *dn = ldb_dn_new(tmp_ctx, ldb,
|
||||
sclass->defaultObjectCategory);
|
||||
if (dn == NULL) {
|
||||
talloc_free(tmp_ctx);
|
||||
return LDB_ERR_OPERATIONS_ERROR;
|
||||
}
|
||||
|
||||
*out = data_blob_string_const(ldb_dn_alloc_casefold(mem_ctx, dn));
|
||||
talloc_free(tmp_ctx);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user