Commit c94ac2e0 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

ntdll: Fix null pointer dereference in RtlDosPathNameToNtPathName_U_WithStatus.

parent 7539dd60
......@@ -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);
......
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