mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:13:10 +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
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
SamIFree_SAMPR_ULONG_ARRAY(PSAMPR_ULONG_ARRAY Ptr)
|
SamIFree_SAMPR_ULONG_ARRAY(PSAMPR_ULONG_ARRAY Ptr)
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
@ stub SamIFree_SAMPR_GROUP_INFO_BUFFER
|
@ stub SamIFree_SAMPR_GROUP_INFO_BUFFER
|
||||||
@ stdcall SamIFree_SAMPR_PSID_ARRAY(ptr)
|
@ stdcall SamIFree_SAMPR_PSID_ARRAY(ptr)
|
||||||
@ stdcall SamIFree_SAMPR_RETURNED_USTRING_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_ULONG_ARRAY(ptr)
|
||||||
@ stdcall SamIFree_SAMPR_USER_INFO_BUFFER(ptr long)
|
@ stdcall SamIFree_SAMPR_USER_INFO_BUFFER(ptr long)
|
||||||
@ stub SamIFree_UserInternal6Information
|
@ stub SamIFree_UserInternal6Information
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue