mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-15 00:02:46 -05:00
launcher: SvcInstanceStart: STATUS_TIMEOUT is not error; handle it correctly
This commit is contained in:
@ -726,7 +726,7 @@ NTSTATUS SvcInstanceStart(HANDLE ClientToken,
|
||||
Result = STATUS_TIMEOUT;
|
||||
else
|
||||
Result = FspNtStatusFromWin32(GetLastError());
|
||||
if (!NT_SUCCESS(Result))
|
||||
if (!NT_SUCCESS(Result) || STATUS_TIMEOUT == Result)
|
||||
{
|
||||
CancelIoEx(SvcInstance->StdioHandles[1], &Overlapped);
|
||||
goto exit;
|
||||
|
Reference in New Issue
Block a user