mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
urlmon: Fix continue_call handling.
This commit is contained in:
parent
88f76cc29e
commit
6299859ee7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user