server: Remove superflous NULL check (Coverity).

This commit is contained in:
Marcus Meissner 2011-06-14 13:38:45 +02:00 committed by Alexandre Julliard
parent 0806f9a438
commit 27c9a61e15

View file

@ -777,7 +777,7 @@ static int accept_into_socket( struct sock *sock, struct sock *acceptsock )
acceptsock->family = sock->family;
acceptsock->wparam = 0;
acceptsock->deferred = NULL;
if (acceptsock->fd) release_object( acceptsock->fd );
release_object( acceptsock->fd );
acceptsock->fd = newfd;
clear_error();