Commit afbb4afc authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ole32: Silence an incorrect fixme.

The remote unknown object should not implement IExternalConnection. Signed-off-by: 's avatarHuw Davies <huw@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1dcf3f8e
......@@ -667,7 +667,8 @@ static HRESULT WINAPI RemUnknown_QueryInterface(IRemUnknown *iface, REFIID riid,
return S_OK;
}
FIXME("No interface for iid %s\n", debugstr_guid(riid));
if (!IsEqualIID(riid, &IID_IExternalConnection))
FIXME("No interface for iid %s\n", debugstr_guid(riid));
*ppv = NULL;
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