From bbe1e6a3aeb0d9e98d201ccfd0fcf215315ffd84 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Tue, 29 Jul 2014 20:29:14 +0000 Subject: [PATCH] [RTL] - Fix copypasta in RtlValidSecurityDescriptor svn path=/trunk/; revision=63774 --- reactos/lib/rtl/sd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.17.1