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

r21635: Don't free talloc()'d memory. I wish people would check the callers

when changing how memory is allocated.
This commit is contained in:
Gerald Carter 2007-03-01 18:48:52 +00:00 committed by Gerald (Jerry) Carter
parent 256f36dce3
commit 78bf4042dd

View File

@ -3886,7 +3886,7 @@ NTSTATUS _samr_query_aliasmem(pipes_struct *p, SAMR_Q_QUERY_ALIASMEM *q_u, SAMR_
init_samr_r_query_aliasmem(r_u, num_sids, sid, NT_STATUS_OK);
SAFE_FREE(sids);
TALLOC_FREE(sids);
return NT_STATUS_OK;
}