From 7cb2f1c41e3ecd1da6ea23746ab802e719067f8c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 18 Oct 2014 17:45:58 +0100 Subject: Avoid dereffing bw when bw's page is removed from bookmarks. --- riscos/window.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'riscos/window.c') diff --git a/riscos/window.c b/riscos/window.c index c3a437d27..9ae75ac90 100644 --- a/riscos/window.c +++ b/riscos/window.c @@ -4086,11 +4086,10 @@ static void ro_gui_window_action_remove_bookmark(struct gui_window *g) nsurl *url; if (g == NULL || g->bw == NULL || g->toolbar == NULL || - g->bw->current_content == NULL || - hlcache_handle_get_url(g->bw->current_content) == NULL) + browser_window_has_content(g->bw) == false) return; - url = hlcache_handle_get_url(g->bw->current_content); + url = browser_window_get_url(g->bw); ro_gui_hotlist_remove_page(url); } -- cgit v1.2.3