mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -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;
|
Result = STATUS_TIMEOUT;
|
||||||
else
|
else
|
||||||
Result = FspNtStatusFromWin32(GetLastError());
|
Result = FspNtStatusFromWin32(GetLastError());
|
||||||
if (!NT_SUCCESS(Result))
|
if (!NT_SUCCESS(Result) || STATUS_TIMEOUT == Result)
|
||||||
{
|
{
|
||||||
CancelIoEx(SvcInstance->StdioHandles[1], &Overlapped);
|
CancelIoEx(SvcInstance->StdioHandles[1], &Overlapped);
|
||||||
goto exit;
|
goto exit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user