Re: ntdll: Set the file_part for \\?\ long file names too
15 Oct
2005
15 Oct
'05
11:40 a.m.
if (!ntpath->Buffer) return FALSE; memcpy( ntpath->Buffer, dos_path, ntpath->MaximumLength ); ntpath->Buffer[1] = '?'; /* change \\?\ to \??\ */ + RtlGetFullPathName_U(dos_path, sizeof(local), local, file_part); return TRUE; }
this is wrong as file_part must point into ntpath->Buffer, not into local, as your code does... A+ -- Eric Pouech
7365
Age (days ago)
7365
Last active (days ago)
0 comments
1 participants
participants (1)
-
Eric Pouech