Ignore:
Timestamp:
May 8, 2002, 4:03:10 PM (23 years ago)
Author:
sandervl
Message:

AllocateAndInitializeSid bugfix (return value)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/advapi32/security.c

    r7983 r8387  
    186186                          PSID *pSid )
    187187{
    188         CallWin32ToNt (RtlAllocateAndInitializeSid(
     188        return RtlAllocateAndInitializeSid(
    189189                pIdentifierAuthority, nSubAuthorityCount,
    190190                nSubAuthority0, nSubAuthority1, nSubAuthority2, nSubAuthority3,
    191191                nSubAuthority4, nSubAuthority5, nSubAuthority6, nSubAuthority7,
    192                 pSid ));
     192                pSid );
    193193}
    194194
Note: See TracChangeset for help on using the changeset viewer.