Huw Davies : ole32: Silence an incorrect fixme.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Oct 14 11:12:49 CDT 2015


Module: wine
Branch: master
Commit: afbb4afc6cb373038ec103d423db74839978d892
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=afbb4afc6cb373038ec103d423db74839978d892

Author: Huw Davies <huw at codeweavers.com>
Date:   Tue Oct 13 14:49:17 2015 +0100

ole32: Silence an incorrect fixme.

The remote unknown object should not implement IExternalConnection.

Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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;




More information about the wine-cvs mailing list