Commit a1192b03 authored by Alexandre Julliard's avatar Alexandre Julliard

ws2_32: Re-enable FD_READ also when returning EWOULDBLOCK from WSARecvFrom().

parent 3739b5f9
......@@ -4290,6 +4290,7 @@ INT WINAPI WSARecvFrom( SOCKET s, LPWSABUF lpBuffers, DWORD dwBufferCount,
}
else
{
_enable_event(SOCKET2HANDLE(s), FD_READ, 0, 0);
err = WSAEWOULDBLOCK;
goto error;
}
......
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