server: Remove no loner needed fd NULL check (Coverity).

Spotted by Marcus Meissner.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-07-21 15:19:37 +02:00 committed by Alexandre Julliard
parent 28173f0693
commit f706d9f08f
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ void queue_async( struct async_queue *queue, struct async *async )
grab_object( async );
list_add_tail( &queue->queue, &async->queue_entry );
if (async->fd) set_fd_signaled( async->fd, 0 );
set_fd_signaled( async->fd, 0 );
}
/* create an async on a given queue of a fd */