[NTOS:SE]

- Fail if the provided default DACL is invalid in NtCreateToken. CID 1237131

svn path=/trunk/; revision=69657
This commit is contained in:
Thomas Faber 2015-10-23 12:40:29 +00:00
parent 6c7a279a05
commit ba56cef9c1

View file

@ -2852,6 +2852,10 @@ NtCreateToken(
NonPagedPool,
FALSE,
&CapturedDefaultDacl);
if (!NT_SUCCESS(Status))
{
goto Cleanup;
}
}
/* Call the internal function */