From ab5ca5225a9ebdfb856ba9e6e770cc41c1badc28 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 17 Jul 2015 18:40:11 -0400 Subject: [PATCH] list box: Remove unnecessary checks Again, coverity takes these as clues to complain. --- gtk/gtklistbox.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c index feec990b54..b9866d0cbc 100644 --- a/gtk/gtklistbox.c +++ b/gtk/gtklistbox.c @@ -2147,9 +2147,9 @@ gtk_list_box_update_header (GtkListBox *box, return; row = g_sequence_get (iter); + g_object_ref (row); + before_iter = gtk_list_box_get_previous_visible (box, iter); - if (row) - g_object_ref (row); before_row = NULL; if (before_iter != NULL) { @@ -2197,8 +2197,7 @@ gtk_list_box_update_header (GtkListBox *box, } if (before_row) g_object_unref (before_row); - if (row) - g_object_unref (row); + g_object_unref (row); } static void