- Fix copypasta in RtlValidSecurityDescriptor

svn path=/trunk/; revision=63774
This commit is contained in:
Thomas Faber 2014-07-29 20:29:14 +00:00
parent 4944a87c1b
commit bbe1e6a3ae

View file

@ -1070,7 +1070,7 @@ RtlValidSecurityDescriptor(IN PSECURITY_DESCRIPTOR SecurityDescriptor)
/* Group SID must be valid if present */
Group = SepGetGroupFromDescriptor(Sd);
if ((Owner) && (!RtlValidSid(Group))) _SEH2_YIELD(return FALSE);
if ((Group) && (!RtlValidSid(Group))) _SEH2_YIELD(return FALSE);
/* DACL must be valid if present */
Dacl = SepGetDaclFromDescriptor(Sd);