Commit 71e61520 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

crypt32: Use isspaceW() instead of isspace() for WCHARs.

Found with Coccinelle. Signed-off-by: 's avatarAkihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent efc86ec1
...@@ -1058,7 +1058,7 @@ BOOL WINAPI CertStrToNameW(DWORD dwCertEncodingType, LPCWSTR pszX500, ...@@ -1058,7 +1058,7 @@ BOOL WINAPI CertStrToNameW(DWORD dwCertEncodingType, LPCWSTR pszX500,
else else
{ {
str = token.end; str = token.end;
while (isspace(*str)) while (isspaceW(*str))
str++; str++;
if (*str != '=') if (*str != '=')
{ {
......
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