Nikolay Sivov : mshtml: IBindStatusCallback::OnStopBinding() last argument is string pointer.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Apr 29 11:05:57 CDT 2016


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Apr 28 21:54:52 2016 +0300

mshtml: IBindStatusCallback::OnStopBinding() last argument is string pointer.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/navigate.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c
index 1854a70..4b86c40 100644
--- a/dlls/mshtml/navigate.c
+++ b/dlls/mshtml/navigate.c
@@ -1862,8 +1862,7 @@ HRESULT channelbsc_load_stream(HTMLInnerWindow *pending_window, IMoniker *mon, I
     if(SUCCEEDED(hres))
         hres = async_stop_request(bscallback);
     if(FAILED(hres))
-        IBindStatusCallback_OnStopBinding(&bscallback->bsc.IBindStatusCallback_iface, hres,
-                ERROR_SUCCESS);
+        IBindStatusCallback_OnStopBinding(&bscallback->bsc.IBindStatusCallback_iface, hres, NULL);
 
     return hres;
 }




More information about the wine-cvs mailing list