ole32: Handle alertable wait in CoWaitForMultipleHandles.
This commit is contained in:
parent
f712c118e7
commit
75801f095d
|
@ -3657,6 +3657,11 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout,
|
|||
hr = RPC_S_CALLPENDING;
|
||||
break;
|
||||
}
|
||||
else if (res == WAIT_IO_COMPLETION)
|
||||
{
|
||||
*lpdwindex = WAIT_IO_COMPLETION;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
ERR("Unexpected wait termination: %d, %d\n", res, GetLastError());
|
||||
|
|
Loading…
Reference in New Issue