Huw Davies : ole32: Silence an incorrect fixme.
Module: wine Branch: master Commit: afbb4afc6cb373038ec103d423db74839978d892 URL: http://source.winehq.org/git/wine.git/?a=commit;h=afbb4afc6cb373038ec103d423... Author: Huw Davies <huw(a)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(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)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;
participants (1)
-
Alexandre Julliard