Commit 077e66c2 authored by James Abbatiello's avatar James Abbatiello Committed by Alexandre Julliard

Fix test for pending message in QUEUE_ReceiveMessage().

parent 2239abb9
......@@ -918,7 +918,7 @@ void QUEUE_ReceiveMessage( MESSAGEQUEUE *queue )
TRACE_(sendmsg)("queue %04x\n", queue->self );
if ( !(queue->wakeBits & QS_SENDMESSAGE) && queue->smPending )
if ( !((queue->wakeBits & QS_SENDMESSAGE) && queue->smPending) )
{
TRACE_(sendmsg)("\trcm: nothing to do\n");
return;
......
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