Victor Martinez Calvo : ieframe: Compare against the correct IID in ShellUIHelper.

Alexandre Julliard julliard at winehq.org
Mon May 5 15:03:26 CDT 2014


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

Author: Victor Martinez Calvo <vmartinez at reactos.org>
Date:   Fri May  2 19:20:05 2014 +0200

ieframe: Compare against the correct IID in ShellUIHelper.

---

 dlls/ieframe/shelluihelper.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ieframe/shelluihelper.c b/dlls/ieframe/shelluihelper.c
index 867505b..9dca681 100644
--- a/dlls/ieframe/shelluihelper.c
+++ b/dlls/ieframe/shelluihelper.c
@@ -45,7 +45,7 @@ static HRESULT WINAPI ShellUIHelper2_QueryInterface(IShellUIHelper2 *iface, REFI
     }else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
         TRACE("(%p)->(IID_IShellUIHelper %p)\n", This, ppv);
         *ppv = &This->IShellUIHelper2_iface;
-    }else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
+    }else if(IsEqualGUID(&IID_IShellUIHelper2, riid)) {
         TRACE("(%p)->(IID_IShellUIHelper2 %p)\n", This, ppv);
         *ppv = &This->IShellUIHelper2_iface;
     }else {




More information about the wine-cvs mailing list