ole32: Silence an incorrect fixme.

The remote unknown object should not implement IExternalConnection.

Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Huw Davies 2015-10-13 14:49:17 +01:00 committed by Alexandre Julliard
parent 1dcf3f8e0a
commit afbb4afc6c
1 changed files with 2 additions and 1 deletions

View File

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