crypt32: Fix incorrect usage of CharNextA.

This commit is contained in:
Alexandre Julliard 2007-06-25 19:55:29 +02:00
parent 24eee19bfd
commit c2cf60fcee
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ BOOL WINAPI CertStrToNameA(DWORD dwCertEncodingType, LPCSTR pszX500,
*ppszError = pszX500;
for (i = 0; i < errorStr - x500; i++)
CharNextA(*ppszError);
*ppszError = CharNextA(*ppszError);
}
CryptMemFree(x500);
}