Commit 356fdcbb authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ole32: OleLoad should call CoCreateInstance with CLSCTX_INPROC_SERVER as well as…

ole32: OleLoad should call CoCreateInstance with CLSCTX_INPROC_SERVER as well as CLSCTX_INPROC_HANDLER.
parent 25e983d3
......@@ -966,7 +966,7 @@ HRESULT WINAPI OleLoad(
*/
hres = CoCreateInstance(&storageInfo.clsid,
NULL,
CLSCTX_INPROC_HANDLER,
CLSCTX_INPROC_HANDLER|CLSCTX_INPROC_SERVER,
riid,
(void**)&pUnk);
......
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