From 6d722f6294d1d1274712f51d7c52b908330852ed Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Mon, 8 Feb 2010 23:13:35 +0100 Subject: [PATCH] Only read history into History panel if an array is given --- panels/midori-history.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/panels/midori-history.c b/panels/midori-history.c index 96cfe70b..0d6c186e 100644 --- a/panels/midori-history.c +++ b/panels/midori-history.c @@ -498,7 +498,8 @@ midori_history_set_app (MidoriHistory* history, history->array = katze_object_get_object (app, "history"); model = gtk_tree_view_get_model (GTK_TREE_VIEW (history->treeview)); #if HAVE_SQLITE - midori_history_read_from_db (history, GTK_TREE_STORE (model), NULL, 0, NULL); + if (history->array) + midori_history_read_from_db (history, GTK_TREE_STORE (model), NULL, 0, NULL); #endif }