1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

s3-winbind: Free some memory which isn't needed anymore.

This commit is contained in:
Andreas Schneider
2010-06-14 11:49:32 +02:00
parent b37db757b6
commit 7d013f4065

View File

@ -274,6 +274,8 @@ NTSTATUS _wbint_QueryGroupList(pipes_struct *p, struct wbint_QueryGroupList *r)
r->out.groups->num_principals = num_groups;
r->out.groups->principals = result;
TALLOC_FREE(groups);
return NT_STATUS_OK;
}