mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Fix test for pending message in QUEUE_ReceiveMessage().
This commit is contained in:
parent
2239abb9f9
commit
077e66c27c
1 changed files with 1 additions and 1 deletions
|
@ -918,7 +918,7 @@ void QUEUE_ReceiveMessage( MESSAGEQUEUE *queue )
|
||||||
|
|
||||||
TRACE_(sendmsg)("queue %04x\n", queue->self );
|
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");
|
TRACE_(sendmsg)("\trcm: nothing to do\n");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue