mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[SAMSRV]
Implement SamIFree_SAMPR_PSID_ARRAY. svn path=/trunk/; revision=58467
This commit is contained in:
parent
65e890e0e9
commit
8a40130a38
2 changed files with 15 additions and 1 deletions
|
@ -64,6 +64,20 @@ SampInitializeRegistry(VOID)
|
|||
}
|
||||
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
SamIFree_SAMPR_PSID_ARRAY(PSAMPR_PSID_ARRAY Ptr)
|
||||
{
|
||||
if (Ptr != NULL)
|
||||
{
|
||||
if (Ptr->Sids !=0)
|
||||
{
|
||||
MIDL_user_free(Ptr->Sids);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
SamIFree_SAMPR_RETURNED_USTRING_ARRAY(PSAMPR_RETURNED_USTRING_ARRAY Ptr)
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
@ stub SamIFree_SAMPR_GET_GROUPS_BUFFER
|
||||
@ stub SamIFree_SAMPR_GET_MEMBERS_BUFFER
|
||||
@ stub SamIFree_SAMPR_GROUP_INFO_BUFFER
|
||||
@ stub SamIFree_SAMPR_PSID_ARRAY
|
||||
@ stdcall SamIFree_SAMPR_PSID_ARRAY(ptr)
|
||||
@ stdcall SamIFree_SAMPR_RETURNED_USTRING_ARRAY(ptr)
|
||||
@ stub SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR
|
||||
@ stdcall SamIFree_SAMPR_ULONG_ARRAY(ptr)
|
||||
|
|
Loading…
Reference in a new issue