From a70e5b556ca2faade25df32b4cac3b5d4b826d1a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 16 Nov 2009 23:58:05 +0100 Subject: [PATCH] urlmon: Don't post notif message if we're in task processing loop. --- dlls/urlmon/bindprot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c index e4f203d28f5..20472baa3fe 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);