Commit b7ed8760 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

secur32: 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 ea6e5174
......@@ -593,8 +593,8 @@ static void SECUR32_initializeProviders(void)
;
if (*comma == ',')
*comma = '\0';
for (; *ptr && isspace(*ptr) && ptr < securityPkgNames + size;
ptr++)
for (; *ptr && isspaceW(*ptr) && ptr < securityPkgNames + size;
ptr++)
;
if (*ptr)
_tryLoadProvider(ptr);
......
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