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:
parent
28173f0693
commit
f706d9f08f
|
@ -208,7 +208,7 @@ void queue_async( struct async_queue *queue, struct async *async )
|
||||||
grab_object( async );
|
grab_object( async );
|
||||||
list_add_tail( &queue->queue, &async->queue_entry );
|
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 */
|
/* create an async on a given queue of a fd */
|
||||||
|
|
Loading…
Reference in New Issue