mshtml: Fixed OnStopBinding if it's called called after we aborted document binding.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0880955733
commit
b0c759a3b9
|
@ -1397,10 +1397,10 @@ static HRESULT nsChannelBSC_stop_binding(BSCallback *bsc, HRESULT result)
|
||||||
{
|
{
|
||||||
nsChannelBSC *This = nsChannelBSC_from_BSCallback(bsc);
|
nsChannelBSC *This = nsChannelBSC_from_BSCallback(bsc);
|
||||||
|
|
||||||
if(result != E_ABORT) {
|
if(result != E_ABORT && This->is_doc_channel && This->bsc.window) {
|
||||||
if(FAILED(result))
|
if(FAILED(result))
|
||||||
handle_navigation_error(This, result);
|
handle_navigation_error(This, result);
|
||||||
else if(This->is_doc_channel && This->nschannel) {
|
else if(This->nschannel) {
|
||||||
result = async_stop_request(This);
|
result = async_stop_request(This);
|
||||||
if(SUCCEEDED(result))
|
if(SUCCEEDED(result))
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
|
Loading…
Reference in New Issue