Commit 928fffee authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wineconsole: Ignore ERROR_IO_INCOMPLETE error in WINECON_GrabChanges.

parent 0d423880
......@@ -212,6 +212,7 @@ void WINECON_GrabChanges(struct inner_data* data)
if (!GetOverlappedResult(data->hSynchro, &data->overlapped, &num, FALSE))
{
if (GetLastError() == ERROR_IO_INCOMPLETE) return;
ERR( "failed to get renderer events: %u\n", GetLastError() );
data->dying = TRUE;
return;
......
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