Addendum to r69475
By Thomas Faber

svn path=/trunk/; revision=69477
This commit is contained in:
Pierre Schweitzer 2015-10-10 08:37:36 +00:00
parent a5031d7982
commit ecba06ffa2
3 changed files with 1 additions and 4 deletions

View file

@ -4,8 +4,8 @@ list(APPEND SOURCE
finfo.c finfo.c
fsctrl.c fsctrl.c
msfs.c msfs.c
rw.c
msfssup.c msfssup.c
rw.c
msfs.h) msfs.h)
add_library(msfs SHARED ${SOURCE} msfs.rc) add_library(msfs SHARED ${SOURCE} msfs.rc)

View file

@ -11,7 +11,6 @@
#define __DRIVERS_FS_MS_MSFS_H #define __DRIVERS_FS_MS_MSFS_H
#include <ntifs.h> #include <ntifs.h>
#include <wdm.h>
#define DEFAULTAPI NTAPI #define DEFAULTAPI NTAPI

View file

@ -123,8 +123,6 @@ MsfsRead(PDEVICE_OBJECT DeviceObject,
} }
Fcb->WaitCount++; Fcb->WaitCount++;
Irp->IoStatus.Status = STATUS_PENDING;
Irp->IoStatus.Information = 0;
IoMarkIrpPending(Irp); IoMarkIrpPending(Irp);
return STATUS_PENDING; return STATUS_PENDING;