After accept is called on the socket, the listening socket needs to be

reselected.
This commit is contained in:
Stephane Lussier 2000-10-13 17:04:52 +00:00 committed by Alexandre Julliard
parent c0e3db958d
commit 21b099f082

View file

@ -355,6 +355,7 @@ static struct object *accept_socket( int handle )
clear_error();
sock->pmask &= ~FD_ACCEPT;
sock->hmask &= ~FD_ACCEPT;
sock_reselect( sock );
release_object( sock );
return &acceptsock->obj;
}