mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00
[SAMSRV]
Implement SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR. svn path=/trunk/; revision=59307
This commit is contained in:
parent
f40518b097
commit
f1638cd57e
2 changed files with 15 additions and 1 deletions
|
@ -217,6 +217,20 @@ SamIFree_SAMPR_RETURNED_USTRING_ARRAY(PSAMPR_RETURNED_USTRING_ARRAY Ptr)
|
|||
}
|
||||
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR(PSAMPR_SR_SECURITY_DESCRIPTOR Ptr)
|
||||
{
|
||||
if (Ptr != NULL)
|
||||
{
|
||||
if (Ptr->SecurityDescriptor != NULL)
|
||||
MIDL_user_free(Ptr->SecurityDescriptor);
|
||||
|
||||
MIDL_user_free(Ptr);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
SamIFree_SAMPR_ULONG_ARRAY(PSAMPR_ULONG_ARRAY Ptr)
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
@ stub SamIFree_SAMPR_GROUP_INFO_BUFFER
|
||||
@ stdcall SamIFree_SAMPR_PSID_ARRAY(ptr)
|
||||
@ stdcall SamIFree_SAMPR_RETURNED_USTRING_ARRAY(ptr)
|
||||
@ stub SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR
|
||||
@ stdcall SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR(ptr)
|
||||
@ stdcall SamIFree_SAMPR_ULONG_ARRAY(ptr)
|
||||
@ stdcall SamIFree_SAMPR_USER_INFO_BUFFER(ptr long)
|
||||
@ stub SamIFree_UserInternal6Information
|
||||
|
|
Loading…
Reference in a new issue