Author: tfaber
Date: Tue Jul 29 20:29:14 2014
New Revision: 63774

URL: http://svn.reactos.org/svn/reactos?rev=63774&view=rev
Log:
[RTL]
- Fix copypasta in RtlValidSecurityDescriptor

Modified:
    trunk/reactos/lib/rtl/sd.c

Modified: trunk/reactos/lib/rtl/sd.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/sd.c?rev=63774&r1=63773&r2=63774&view=diff
==============================================================================
--- trunk/reactos/lib/rtl/sd.c  [iso-8859-1] (original)
+++ trunk/reactos/lib/rtl/sd.c  [iso-8859-1] Tue Jul 29 20:29:14 2014
@@ -1070,7 +1070,7 @@
 
         /* 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);


Reply via email to