Feb. 6, 2024
5:12 a.m.
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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4954#note_60191