Commit 27c9a61e authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

server: Remove superflous NULL check (Coverity).

parent 0806f9a4
...@@ -777,7 +777,7 @@ static int accept_into_socket( struct sock *sock, struct sock *acceptsock ) ...@@ -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();
......
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