Commit 75801f09 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

ole32: Handle alertable wait in CoWaitForMultipleHandles.

parent f712c118
...@@ -3657,6 +3657,11 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, ...@@ -3657,6 +3657,11 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout,
hr = RPC_S_CALLPENDING; hr = RPC_S_CALLPENDING;
break; break;
} }
else if (res == WAIT_IO_COMPLETION)
{
*lpdwindex = WAIT_IO_COMPLETION;
break;
}
else else
{ {
ERR("Unexpected wait termination: %d, %d\n", res, GetLastError()); ERR("Unexpected wait termination: %d, %d\n", res, GetLastError());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment