Michael Stefaniuc : mshtml: Avoid using the COM method implementations directly.

Alexandre Julliard julliard at winehq.org
Tue Sep 6 10:47:30 CDT 2016


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Fri Sep  2 13:36:19 2016 +0200

mshtml: Avoid using the COM method implementations directly.

Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c
index 2b79226..407de0c 100644
--- a/dlls/mshtml/htmlwindow.c
+++ b/dlls/mshtml/htmlwindow.c
@@ -524,7 +524,7 @@ static HRESULT WINAPI HTMLWindow2_get_frames(IHTMLWindow2 *iface, IHTMLFramesCol
 
     /* FIXME: Should return a separate Window object */
     *p = (IHTMLFramesCollection2*)&This->IHTMLWindow2_iface;
-    HTMLWindow2_AddRef(iface);
+    IHTMLWindow2_AddRef(iface);
     return S_OK;
 }
 




More information about the wine-cvs mailing list