sys: RejectIrpPriorToTransact0 is always 1

This commit is contained in:
Bill Zissimopoulos
2022-06-29 15:08:34 +01:00
parent e9143a73a6
commit f1cfe758ec
3 changed files with 9 additions and 1 deletions

View File

@ -67,6 +67,9 @@ void *memfs_start_ex(ULONG Flags, ULONG FileInfoTimeout)
Result = MemfsStart(Memfs);
ASSERT(NT_SUCCESS(Result));
Result = FspFsctlTransact(MemfsFileSystem(Memfs)->VolumeHandle, 0, 0, 0, 0, FALSE);
ASSERT(NT_SUCCESS(Result));
memfs_running = 1;
memfs_handle = MemfsFileSystem(Memfs)->VolumeHandle;