13 Jan
2025
13 Jan
'25
11:33 p.m.
Alfred Agrell (@Alcaro) commented about dlls/ntdll/unix/file.c:
TRACE( "%s -> %s\n", wine_dbgstr_longlong(file_id), debugstr_a(unix_name) ); *unix_name_ret = unix_name;
- nt_name->MaximumLength = (strlen(unix_name) + 1) * sizeof(WCHAR); + size_t len_unix_name = strlen(unix_name); + nt_name->MaximumLength = ( + 1) * sizeof(WCHAR);
are you _sure_ that's what you meant to commit? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7143#note_91956