Alexandre Julliard (@julliard) commented about dlls/kernelbase/path.c:
{ URL_SCHEME_RES, L"res"},
};
+static const WCHAR *parse_scheme( const WCHAR *p ) +{
- while (isalnum( *p ) || *p == '+' || *p == '-' || *p == '.')
++p;
I know this was already in the existing code, but you can't use isalnum() with Unicode chars.