https://bugs.winehq.org/show_bug.cgi?id=53715
--- Comment #8 from Béla Gyebrószki gyebro69@gmail.com --- (In reply to Erich E. Hoover from comment #7)
No, but I see a mistake - try replacing:
- while (p > name && p[-1] == '\') p--;
- while (p > name && p[-1] != '\') p--;
=== with: ===
- while (p > name && p[-1] == '/') p--;
- while (p > name && p[-1] != '/') p--;
===
Unfortunately that doesn't fix the problem when 'Show dot files' is unchecked.