[ADVAPI32]

sync ParseStringSidToSid with wine 1.1.40

svn path=/trunk/; revision=46207
This commit is contained in:
Christoph von Wittich 2010-03-15 15:44:35 +00:00
parent 59b9f20eee
commit 7a57ed5819

View file

@ -805,6 +805,9 @@ static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes)
return FALSE;
}
while (*StringSid == ' ')
StringSid++;
*cBytes = ComputeStringSidSize(StringSid);
if (!pisid) /* Simply compute the size */
{