[project @ 2003-12-28 16:17:31 by jmb]

Fix bug in HTTP auth where trying to fetch a page into a non-existent
browser window caused NetSurf to fall over.
We now check that the window still exists. If not, we ignore the request.

svn path=/import/netsurf/; revision=464
This commit is contained in:
John Mark Bell 2003-12-28 16:17:31 +00:00
parent b0b2ec850f
commit 3a8b8485ad
3 changed files with 20 additions and 0 deletions

View File

@ -209,6 +209,9 @@ void browser_window_open_location_historical(struct browser_window* bw,
assert(bw != 0 && url != 0);
/* Check window still exists, if not, don't bother going any further */
if (!gui_window_in_list(bw->window)) return;
if (bw->url != NULL)
browser_window_destroy(bw, false);

View File

@ -18,6 +18,7 @@ typedef struct gui_window gui_window;
#include <stdbool.h>
#include "netsurf/desktop/browser.h"
bool gui_window_in_list(gui_window *g);
gui_window *gui_create_browser_window(struct browser_window *bw);
gui_window *gui_create_download_window(struct content *content);
void gui_window_destroy(gui_window* g);

View File

@ -12,6 +12,7 @@
*/
#include <assert.h>
#include <stdbool.h>
#include <string.h>
#include "oslib/wimp.h"
#include "oslib/wimpspriteop.h"
@ -24,6 +25,21 @@
gui_window *window_list = 0;
/**
* Checks if a window still exists.
*/
bool gui_window_in_list(gui_window *g) {
gui_window *temp;
if (g == window_list) return true;
for(temp=window_list; temp->next != g && temp->next!=0; temp=temp->next) ;
if (temp->next == NULL) return false;
return true;
}
/**
* Create and open a new browser window.