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
1 changed files with 1 additions and 1 deletions

View File

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