1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-10-30 11:38:39 -05:00

Merge branch 'pvt-reject-irp'

This commit is contained in:
Bill Zissimopoulos
2020-02-07 13:29:19 -08:00
8 changed files with 75 additions and 6 deletions

View File

@@ -273,6 +273,11 @@ static DWORD WINAPI FspFileSystemDispatcherThread(PVOID FileSystem0)
OperationContext.Response = Response;
TlsSetValue(FspFileSystemTlsKey, &OperationContext);
Result = FspFsctlTransact(FileSystem->VolumeHandle, 0, 0, 0, 0, FALSE);
/* send a Transact0 to inform the FSD that the dispatcher is ready */
if (!NT_SUCCESS(Result))
goto exit;
memset(Response, 0, sizeof *Response);
for (;;)
{