sys: IRP_MJ_SET_SECURITY

This commit is contained in:
Bill Zissimopoulos
2016-02-18 17:21:39 -08:00
parent d4f1c13542
commit 12bbddfb19
4 changed files with 89 additions and 3 deletions

View File

@ -177,8 +177,11 @@ static NTSTATUS FspFsvolCreateNoLock(
/* check security descriptor validity */
if (0 != SecurityDescriptor)
{
#if 0
/* captured security descriptor is always valid */
if (!RtlValidSecurityDescriptor(SecurityDescriptor))
return STATUS_INVALID_PARAMETER;
#endif
SecurityDescriptorSize = RtlLengthSecurityDescriptor(SecurityDescriptor);
}