From 7fd3e9d678b493a72c51301e233870c9960985ea Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 25 Oct 2013 10:46:42 +0200 Subject: [PATCH] accounts-dialog: early return if gtk_tree_view_get_selection returns NULL --- src/empathy-accounts-dialog.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 83f1334c..76b460a7 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -279,6 +279,8 @@ account_is_selected (EmpathyAccountsDialog *dialog, return FALSE; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview)); + if (selection == NULL) + return FALSE; if (!gtk_tree_selection_get_selected (selection, &model, &iter)) return FALSE; -- 2.39.2