Commit f706d9f0 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

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

Spotted by Marcus Meissner. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 28173f06
......@@ -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 */
......
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