Commit 6299859e authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Fix continue_call handling.

parent 88f76cc2
......@@ -151,8 +151,11 @@ static LRESULT WINAPI notif_wnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
Binding *binding = (Binding*)lParam;
task_header_t *task;
while((task = pop_task(binding)))
while((task = pop_task(binding))) {
binding->continue_call++;
task->proc(binding, task);
binding->continue_call--;
}
IBinding_Release(BINDING(binding));
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment