From: Thomas Faber Date: Tue, 29 Jul 2014 20:29:14 +0000 (+0000) Subject: [RTL] X-Git-Tag: backups/0.3.17@66124~861 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=bbe1e6a3aeb0d9e98d201ccfd0fcf215315ffd84;ds=sidebyside [RTL] - Fix copypasta in RtlValidSecurityDescriptor svn path=/trunk/; revision=63774 --- diff --git a/reactos/lib/rtl/sd.c b/reactos/lib/rtl/sd.c index 010c4e25a92..ea7e3bb44f5 100644 --- a/reactos/lib/rtl/sd.c +++ b/reactos/lib/rtl/sd.c @@ -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);