crypt32: Use isspaceW() instead of isspace() for WCHARs.
Found with Coccinelle. Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
efc86ec175
commit
71e6152077
|
@ -1058,7 +1058,7 @@ BOOL WINAPI CertStrToNameW(DWORD dwCertEncodingType, LPCWSTR pszX500,
|
|||
else
|
||||
{
|
||||
str = token.end;
|
||||
while (isspace(*str))
|
||||
while (isspaceW(*str))
|
||||
str++;
|
||||
if (*str != '=')
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue