Detlef Riekenberg wine.dev@web.de writes:
@@ -3657,7 +3657,14 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, } else {
ERR("Unexpected wait termination: %d, %d\n", res, GetLastError());
static DWORD old_res;static DWORD old_lasterror;if ((res != old_res) || (GetLastError() != old_lasterror)){old_res = res;old_lasterror = GetLastError();ERR("Unexpected wait termination: %d, %d\n", res, GetLastError());}
That's just hiding the problem.