From 5f8776c8d01f7fa4849373c97a59257e416ad8ae Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Wed, 17 Mar 2010 16:09:09 -0500 Subject: [PATCH] mshtml: Fix return value interpretation when navigating. --- dlls/mshtml/nsio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index f4e6f4bcb56..88a4e55254b 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -904,7 +904,7 @@ static nsresult NSAPI nsChannel_AsyncOpen(nsIHttpChannel *iface, nsIStreamListen open = FALSE; }else { - open = before_async_open(This, window->doc_obj->nscontainer); + open = !before_async_open(This, window->doc_obj->nscontainer); if(!open) { TRACE("canceled\n"); nsres = NS_ERROR_UNEXPECTED; -- 2.11.4.GIT