[PATCH 4/4] ole32: Silence an incorrect fixme.

Huw Davies huw at codeweavers.com
Tue Oct 13 08:49:17 CDT 2015


The remote unknown object should not implement IExternalConnection.

Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 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 a7d00c5..57048c6 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;
-- 
1.8.0




More information about the wine-patches mailing list