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.
This commit is contained in:
Robert Shearman 2006-05-01 10:39:31 +01:00 committed by Alexandre Julliard
parent 772eb9bdf9
commit 6814b33aa3

View file

@ -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