mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[ADVAPI32]
EqualSid: Set last error to ERROR_SUCCESS before calling RtlEqualSid. svn path=/trunk/; revision=60442
This commit is contained in:
parent
f576a9aa78
commit
416ae6f094
1 changed files with 1 additions and 0 deletions
|
@ -1439,6 +1439,7 @@ WINAPI
|
|||
EqualSid(PSID pSid1,
|
||||
PSID pSid2)
|
||||
{
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
return RtlEqualSid (pSid1, pSid2);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue