Commit 5f29bcda authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Make the "not found" trace in nt_to_unix_file_name_no_root() less misleading.

unix_name is not guaranteed to be zero-terminated at this point.
parent bb648268
......@@ -3540,7 +3540,7 @@ static NTSTATUS nt_to_unix_file_name_no_root( const UNICODE_STRING *nameW, char
}
else
{
TRACE( "%s not found in %s\n", debugstr_w(name), unix_name );
TRACE( "%s not found in %s\n", debugstr_w(name), debugstr_an(unix_name, pos) );
free( unix_name );
}
return status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment