April 14, 2026
9:29 p.m.
Alfred Agrell (@Alcaro) commented about dlls/d3dcompiler_43/compiler.c:
ULONG read; DWORD len;
- if ((initial_dir = strrchr(include->initial_filename, '\\'))) + if ((initial_dir = strrchr(include->initial_filename, '\\')) || + (initial_dir = strrchr(include->initial_filename, '/')))
What is the expected behavior if the path contains both / and \\? We should add tests for that. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10662#note_136214