Commit c2cf60fc authored by Alexandre Julliard's avatar Alexandre Julliard

crypt32: Fix incorrect usage of CharNextA.

parent 24eee19b
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment