From f9b45e265b9371b5a857c3aafa5d68d8394ad0be Mon Sep 17 00:00:00 2001 From: raveit65 Date: Sun, 29 May 2016 18:39:00 +0200 Subject: mdict: Remove assertion in sidebar code Allow the sidebar page to be unset. taken from: https://git.gnome.org/browse/gnome-dictionary/commit/?id=cff1cc6 --- mate-dictionary/src/gdict-sidebar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mate-dictionary/src/gdict-sidebar.c') diff --git a/mate-dictionary/src/gdict-sidebar.c b/mate-dictionary/src/gdict-sidebar.c index 75e1d252..7ca99fab 100644 --- a/mate-dictionary/src/gdict-sidebar.c +++ b/mate-dictionary/src/gdict-sidebar.c @@ -562,7 +562,8 @@ gdict_sidebar_current_page (GdictSidebar *sidebar) index = gtk_notebook_get_current_page (GTK_NOTEBOOK (priv->notebook)); page = g_slist_nth_data (priv->pages, index); - g_assert (page != NULL); + if (page == NULL) + return NULL; return page->id; } -- cgit v1.2.1