parent
f3392ac814
commit
00c32239b4
|
@ -835,18 +835,19 @@ NTSTATUS WINAPI RtlSelfRelativeToAbsoluteSD(
|
||||||
* RtlGetControlSecurityDescriptor (NTDLL.@)
|
* RtlGetControlSecurityDescriptor (NTDLL.@)
|
||||||
*/
|
*/
|
||||||
NTSTATUS WINAPI RtlGetControlSecurityDescriptor(
|
NTSTATUS WINAPI RtlGetControlSecurityDescriptor(
|
||||||
PSECURITY_DESCRIPTOR pSecurityDescriptor,
|
PSECURITY_DESCRIPTOR pSecurityDescriptor,
|
||||||
PSECURITY_DESCRIPTOR_CONTROL pControl,
|
PSECURITY_DESCRIPTOR_CONTROL pControl,
|
||||||
LPDWORD lpdwRevision)
|
LPDWORD lpdwRevision)
|
||||||
{
|
{
|
||||||
SECURITY_DESCRIPTOR* lpsd=pSecurityDescriptor;
|
SECURITY_DESCRIPTOR *lpsd = pSecurityDescriptor;
|
||||||
|
|
||||||
TRACE("(%p,%p,%p),stub!\n",pSecurityDescriptor,pControl,lpdwRevision);
|
TRACE("(%p,%p,%p)\n",pSecurityDescriptor,pControl,lpdwRevision);
|
||||||
|
|
||||||
if ( !lpsd || !pControl || !lpdwRevision )
|
|
||||||
return STATUS_INVALID_PARAMETER;
|
|
||||||
|
|
||||||
*lpdwRevision = lpsd->Revision;
|
*lpdwRevision = lpsd->Revision;
|
||||||
|
|
||||||
|
if (*lpdwRevision != SECURITY_DESCRIPTOR_REVISION)
|
||||||
|
return STATUS_UNKNOWN_REVISION;
|
||||||
|
|
||||||
*pControl = lpsd->Control;
|
*pControl = lpsd->Control;
|
||||||
|
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue