Commit 6814b33a authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

ole32: Remove the fixme printed if CoGetClassObject fails in CoCreateInstance.

Remove the fixme printed if CoGetClassObject fails in CoCreateInstance, because we already print an error in all cases and the error more accurately pin-points the source of the problem.
parent 772eb9bd
......@@ -1878,11 +1878,8 @@ HRESULT WINAPI CoCreateInstance(
&IID_IClassFactory,
(LPVOID)&lpclf);
if (FAILED(hres)) {
FIXME("no classfactory created for CLSID %s, hres is 0x%08lx\n",
debugstr_guid(rclsid),hres);
if (FAILED(hres))
return hres;
}
/*
* Create the object and don't forget to release the factory
......
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