advapi32: security: Remove unneeded FIXME.

This commit is contained in:
Mikolaj Zalewski 2007-09-28 10:51:32 -07:00 committed by Alexandre Julliard
parent b2648b8285
commit 719da96a3e
1 changed files with 1 additions and 5 deletions

View File

@ -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);
}
/******************************************************************************