Jacek Caban : urlmon: Don't post notif message if we' re in task processing loop.

Alexandre Julliard julliard at winehq.org
Tue Nov 17 09:28:17 CST 2009


Module: wine
Branch: master
Commit: a70e5b556ca2faade25df32b4cac3b5d4b826d1a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a70e5b556ca2faade25df32b4cac3b5d4b826d1a

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Nov 16 23:58:05 2009 +0100

urlmon: Don't post notif message if we're in task processing loop.

---

 dlls/urlmon/bindprot.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c
index e4f203d..20472ba 100644
--- a/dlls/urlmon/bindprot.c
+++ b/dlls/urlmon/bindprot.c
@@ -205,7 +205,7 @@ static void push_task(BindProtocol *This, task_header_t *task, task_proc_t proc)
         This->task_queue_tail = task;
     }else {
         This->task_queue_tail = This->task_queue_head = task;
-        do_post = TRUE;
+        do_post = !This->continue_call;
     }
 
     LeaveCriticalSection(&This->section);




More information about the wine-cvs mailing list