23 Sep
2022
23 Sep
'22
4:54 p.m.
https://bugs.winehq.org/show_bug.cgi?id=53715 --- Comment #7 from Erich E. Hoover <erich.e.hoover(a)gmail.com> --- 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--; === -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.