Commit 512f8b17 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

objsel: Do not create an object from IClassFactory::QueryInterface().

parent 2ac66e33
......@@ -189,10 +189,6 @@ static HRESULT WINAPI class_factory_QueryInterface(IClassFactory *iface, REFIID
IClassFactory_AddRef(iface);
return S_OK;
}
else if (IsEqualGUID(iid, &IID_IDsObjectPicker))
{
return IClassFactory_CreateInstance(iface, NULL, iid, out);
}
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
return E_NOINTERFACE;
......
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