From 55389c543be402eeca097cde75a68d8b1315b980 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Wed, 5 Jul 2006 17:28:30 +0000 Subject: Fix 1488164. svn path=/trunk/netsurf/; revision=2718 --- desktop/history_core.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/desktop/history_core.c b/desktop/history_core.c index e53bdf314..b7fd66648 100644 --- a/desktop/history_core.c +++ b/desktop/history_core.c @@ -436,6 +436,9 @@ void history_layout(struct history *history) time_t t = time(0); struct tm *tp = localtime(&t); bool shuffle = tp->tm_mon == 3 && tp->tm_mday == 1; + + if (!history) + return; history->width = 0; if (history->start) @@ -650,6 +653,9 @@ struct history_entry *history_find_position(struct history_entry *entry, { struct history_entry *child; struct history_entry *found; + + if (!entry) + return 0; if (entry->x <= x && x <= entry->x + WIDTH && entry->y <= y && y <= entry->y + HEIGHT) -- cgit v1.2.3