[ADVAPI32]

EqualSid: Set last error to ERROR_SUCCESS before calling RtlEqualSid.

svn path=/trunk/; revision=60442
This commit is contained in:
Eric Kohl 2013-09-28 19:36:27 +00:00
parent f576a9aa78
commit 416ae6f094

View file

@ -1439,6 +1439,7 @@ WINAPI
EqualSid(PSID pSid1,
PSID pSid2)
{
SetLastError(ERROR_SUCCESS);
return RtlEqualSid (pSid1, pSid2);
}