Skip to content
Snippets Groups Projects
Commit 4b29d669 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Ignore EAGAIN errors in read_request.

parent 8b216b3d
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ void read_request( struct thread *thread )
kill_thread( thread, 0 );
else if (ret > 0)
fatal_protocol_error( thread, "partial read %d\n", ret );
else
else if (errno != EWOULDBLOCK && errno != EAGAIN)
fatal_protocol_perror( thread, "read" );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment