mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
launcher: SvcInstanceStart: STATUS_TIMEOUT is not error; handle it correctly
This commit is contained in:
parent
35b9cb15a3
commit
4366866653
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user