ntdll: Fix null pointer dereference in RtlDosPathNameToNtPathName_U_WithStatus.
Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7539dd607b
commit
c94ac2e061
|
@ -231,7 +231,7 @@ NTSTATUS WINAPI RtlDosPathNameToNtPathName_U_WithStatus(const WCHAR *dos_path, U
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (*file_part) *file_part = NULL;
|
||||
if (file_part) *file_part = NULL;
|
||||
|
||||
sz = LOWORD(dosdev);
|
||||
|
||||
|
|
Loading…
Reference in New Issue