Commit 9ba1ccf5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Set BINF_NEEDFILE flag for synchronous binding of builtin protocols.

parent b5faada6
......@@ -1431,7 +1431,7 @@ static HRESULT Binding_Create(IMoniker *mon, Binding *binding_ctx, LPCWSTR url,
if(to_obj)
ret->bindinfo.dwOptions |= 0x100000;
if(!is_urlmon_protocol(url))
if(!(ret->bindf & BINDF_ASYNCHRONOUS) || !is_urlmon_protocol(url))
ret->bindf |= BINDF_NEEDFILE;
ret->url = heap_strdupW(url);
......
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