Dmitry Timoshkov : ntdll: Remove an artificial limitation in NtQuerySecurityObject.
Module: wine Branch: master Commit: bd378f0327f5fbdcfe6173a0b242e670b12b5bbb URL: http://source.winehq.org/git/wine.git/?a=commit;h=bd378f0327f5fbdcfe6173a0b2... Author: Dmitry Timoshkov <dmitry(a)codeweavers.com> Date: Fri Jul 13 14:19:15 2007 +0900 ntdll: Remove an artificial limitation in NtQuerySecurityObject. --- dlls/ntdll/om.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/om.c b/dlls/ntdll/om.c index 0e94e35..06ec9f6 100644 --- a/dlls/ntdll/om.c +++ b/dlls/ntdll/om.c @@ -188,8 +188,6 @@ NtQuerySecurityObject( RequestedInformation &= 0x0000000f; - if (RequestedInformation & SACL_SECURITY_INFORMATION) return STATUS_ACCESS_DENIED; - ZeroMemory(Buffer, 256); RtlCreateSecurityDescriptor((PSECURITY_DESCRIPTOR)psd, SECURITY_DESCRIPTOR_REVISION); psd->Control = SE_SELF_RELATIVE |
participants (1)
-
Alexandre Julliard