From ba9a049d7bca2e6fb761349d96d527cfb43f3b53 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Fri, 21 Nov 2014 23:58:56 +0000 Subject: Simplify ami_history_open API and use correct call to get history object. --- amiga/history_local.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'amiga/history_local.c') diff --git a/amiga/history_local.c b/amiga/history_local.c index 93af92e0e..2fb1ba677 100755 --- a/amiga/history_local.c +++ b/amiga/history_local.c @@ -98,11 +98,17 @@ static void ami_history_redraw(struct history_window *hw) /* exported interface documented in amiga/history_local.h */ -void ami_history_open(struct gui_window *gw, struct history *history) +void ami_history_open(struct gui_window *gw) { + struct history *history; int width, height; - assert(history); + if (gw->bw == NULL) + return; + + history = browser_window_get_history(gw->bw); + if (history == NULL) + return; if(!gw->hw) { -- cgit v1.2.3