Re: [PATCH v46 0/1] MR10192: kernelbase: Handle extended length path prefix in GetLongPathNameW
April 3, 2026
1:37 p.m.
Akihiro Sagawa (@sgwaki) commented about dlls/kernelbase/file.c:
return 0; }
- if (shortpath[0] == '\\' && shortpath[1] == '\\') + /* Handle \\?\ prefix (Extended Length Path) */ + if (wcslen(shortpath) >= 4 && shortpath[0] == '\\' && + shortpath[1] == '\\' && shortpath[2] == '?' && shortpath[3] == '\\') {
Please add a newline before `{` and `}`, and also use a 4‑space indentation instead of 2 spaces to match the surrounding code. The same style issue applies to the following lines, so the rest is omitted. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10192#note_134942
20
Age (days ago)
20
Last active (days ago)
0 comments
1 participants
participants (1)
-
Akihiro Sagawa (@sgwaki)