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] == '\\' &&
`lstrlenW` is preferred since it is already used elsewhere in this function. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10192#note_134941
20
Age (days ago)
20
Last active (days ago)
0 comments
1 participants
participants (1)
-
Akihiro Sagawa (@sgwaki)