Mikolaj Zalewski : advapi32: security: Remove unneeded FIXME.
Module: wine Branch: master Commit: 719da96a3eb74a8a6d73eef3cbea88811600f608 URL: http://source.winehq.org/git/wine.git/?a=commit;h=719da96a3eb74a8a6d73eef3cb... Author: Mikolaj Zalewski <mikolajz(a)google.com> Date: Fri Sep 28 10:51:32 2007 -0700 advapi32: security: Remove unneeded FIXME. --- dlls/advapi32/security.c | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index 23e9ad2..2e8a124 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -1163,11 +1163,7 @@ BOOL WINAPI GetPrivateObjectSecurity( } *ReturnLength = DescriptorLength; - if (!MakeSelfRelativeSD(&desc, ResultantDescriptor, ReturnLength)) - return FALSE; - GetSecurityDescriptorOwner(ResultantDescriptor, &psid, &defaulted); - FIXME("%p, sid=%p\n", &desc, psid); - return TRUE; + return MakeSelfRelativeSD(&desc, ResultantDescriptor, ReturnLength); } /******************************************************************************
participants (1)
-
Alexandre Julliard