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?