Commit 9e145eeb authored by Roman Dadkov's avatar Roman Dadkov Committed by Alexandre Julliard

ole32: Fix dwClsContext parameter of a CoCreateInstance call in DefaultHandler_Run.

parent 2e1da7ec
......@@ -1322,7 +1322,7 @@ static HRESULT WINAPI DefaultHandler_Run(
release_delegates(This);
hr = CoCreateInstance(&This->clsid, NULL, CLSCTX_LOCAL_SERVER,
hr = CoCreateInstance(&This->clsid, NULL, CLSCTX_ALL,
&IID_IOleObject, (void **)&This->pOleDelegate);
if (FAILED(hr))
return hr;
......
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