Commit 3c28511d authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Silence a warning for FileFsVolumeInformation.

We may call CopyFile() and thus GetFileInformationByHandle(), which retrieves the volume serial number, many times when setting up a prefix, before mountmgr has been initialized. Signed-off-by: 's avatarZebediah Figura <zfigura@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent d9003a04
......@@ -3458,7 +3458,6 @@ NTSTATUS WINAPI NtQueryVolumeInformationFile( HANDLE handle, PIO_STATUS_BLOCK io
if (!(drive = get_mountmgr_fs_info( handle, fd )))
{
ERR_(winediag)("Failed to query volume information from mountmgr.\n");
io->u.Status = STATUS_NOT_IMPLEMENTED;
break;
}
......
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