projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4944a87
)
[RTL]
author
Thomas Faber
<thomas.faber@reactos.org>
Tue, 29 Jul 2014 20:29:14 +0000
(20:29 +0000)
committer
Thomas Faber
<thomas.faber@reactos.org>
Tue, 29 Jul 2014 20:29:14 +0000
(20:29 +0000)
- Fix copypasta in RtlValidSecurityDescriptor
svn path=/trunk/; revision=63774
reactos/lib/rtl/sd.c
patch
|
blob
|
history
diff --git
a/reactos/lib/rtl/sd.c
b/reactos/lib/rtl/sd.c
index
010c4e2
..
ea7e3bb
100644
(file)
--- 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);