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

This commit is contained in:
Jacek Caban 2009-11-16 23:58:05 +01:00 committed by Alexandre Julliard
parent 6be475d0fe
commit a70e5b556c
1 changed files with 1 additions and 1 deletions

View File

@ -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);