1
0
mirror of https://github.com/bobranten/Ext4Fsd.git synced 2026-03-16 05:10:37 -05:00

corrected the wait argument to CcCopyRead

This commit is contained in:
Bo Branten
2026-02-08 15:07:34 +01:00
parent 6347c88d18
commit 2ad48351d5
2 changed files with 2 additions and 5 deletions

View File

@@ -633,7 +633,7 @@ Ext2LoadInodeXattr(IN PEXT2_VCB Vcb,
Vcb->Volume,
(PLARGE_INTEGER)&Offset,
Vcb->InodeSize,
PIN_WAIT,
TRUE,
(PVOID)InodeXattr,
&IoStatus)) {
return FALSE;

View File

@@ -59,7 +59,6 @@ Ext2CompleteIrpContext (
return Status;
}
NTSTATUS
Ext2ReadVolume (IN PEXT2_IRP_CONTEXT IrpContext)
{
@@ -297,7 +296,6 @@ Ext2ReadVolume (IN PEXT2_IRP_CONTEXT IrpContext)
return Status;
}
#define SafeZeroMemory(AT,BYTE_COUNT) { \
__try { \
if (AT) \
@@ -435,7 +433,7 @@ Ext2ReadInode (
Vcb->Volume,
(PLARGE_INTEGER)(&(Extent->Lba)),
Extent->Length,
PIN_WAIT,
TRUE,
(PVOID)((PUCHAR)Buffer + Extent->Offset),
&IoStatus
)) {
@@ -859,7 +857,6 @@ Ext2ReadComplete (IN PEXT2_IRP_CONTEXT IrpContext)
return Status;
}
NTSTATUS
Ext2Read (IN PEXT2_IRP_CONTEXT IrpContext)
{