From afbb4afc6cb373038ec103d423db74839978d892 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Tue, 13 Oct 2015 14:49:17 +0100 Subject: [PATCH] ole32: Silence an incorrect fixme. The remote unknown object should not implement IExternalConnection. Signed-off-by: Huw Davies Signed-off-by: Alexandre Julliard --- dlls/ole32/stubmanager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/ole32/stubmanager.c b/dlls/ole32/stubmanager.c index a7d00c501e0..57048c63062 100644 --- a/dlls/ole32/stubmanager.c +++ b/dlls/ole32/stubmanager.c @@ -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;