mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Partly merged r34238
svn path=/trunk/; revision=34239
This commit is contained in:
parent
344f0672d5
commit
6cc054e590
1 changed files with 5 additions and 4 deletions
|
@ -308,6 +308,7 @@ NtfsGetVolumeData(PDEVICE_OBJECT DeviceObject,
|
|||
}
|
||||
|
||||
ExFreePool(MftRecord);
|
||||
ExFreePool(VolumeRecord);
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
@ -354,7 +355,7 @@ NtfsMountVolume(PDEVICE_OBJECT DeviceObject,
|
|||
if (!NT_SUCCESS(Status))
|
||||
goto ByeBye;
|
||||
|
||||
NewDeviceObject->Flags = NewDeviceObject->Flags | DO_DIRECT_IO;
|
||||
NewDeviceObject->Flags |= DO_DIRECT_IO;
|
||||
Vcb = (PVOID)NewDeviceObject->DeviceExtension;
|
||||
RtlZeroMemory(Vcb, sizeof(NTFS_VCB));
|
||||
|
||||
|
|
Loading…
Reference in a new issue