1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3: Remove an unnecessary if-statement

This commit is contained in:
Volker Lendecke 2011-02-26 13:43:55 +01:00
parent 4fd4303c64
commit bc940ed4c8

View File

@ -184,9 +184,7 @@ static NTSTATUS idmap_rid_sids_to_unixids(struct idmap_domain *dom, struct id_ma
static NTSTATUS idmap_rid_close(struct idmap_domain *dom)
{
if (dom->private_data) {
TALLOC_FREE(dom->private_data);
}
TALLOC_FREE(dom->private_data);
return NT_STATUS_OK;
}