Module: wine Branch: master Commit: a70e5b556ca2faade25df32b4cac3b5d4b826d1a URL: http://source.winehq.org/git/wine.git/?a=commit;h=a70e5b556ca2faade25df32b4c...
Author: Jacek Caban jacek@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);