mshtml: Call OnStopRequest in OnStopBinding.
This commit is contained in:
parent
6c1e595c21
commit
78c287f12a
|
@ -293,7 +293,13 @@ static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *ifac
|
|||
HRESULT hresult, LPCWSTR szError)
|
||||
{
|
||||
BSCallback *This = STATUSCLB_THIS(iface);
|
||||
FIXME("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
|
||||
|
||||
TRACE("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
|
||||
|
||||
if(This->nslistener)
|
||||
nsIStreamListener_OnStopRequest(This->nslistener, (nsIRequest*)NSCHANNEL(This->nschannel),
|
||||
This->nscontext, NS_OK);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue