Fix String SID parsing.

This commit is contained in:
Robert Shearman 2005-09-16 18:44:17 +00:00 committed by Alexandre Julliard
parent dc2e1399ef
commit c218e74184
1 changed files with 1 additions and 1 deletions

View File

@ -3135,7 +3135,7 @@ static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes)
return TRUE;
}
if (*StringSid != 'S' || *StringSid != '-') /* S-R-I-S-S */
if (StringSid[0] == 'S' && StringSid[1] == '-') /* S-R-I-S-S */
{
DWORD i = 0, identAuth;
DWORD csubauth = ((*cBytes - sizeof(SID)) / sizeof(DWORD)) + 1;