aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-editor.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-09-30 21:39:57 +0800
committerMilan Crha <mcrha@redhat.com>2011-09-30 21:39:57 +0800
commit4c56856e05c6ab1468fe8ace4b73ac31b333990b (patch)
tree98304dd391494a7f9cc1aecebb99fe3b0f328377 /addressbook/gui/contact-list-editor/e-contact-list-editor.c
parent2def4a73864c87c4dee25b04180c882e72a0fee1 (diff)
downloadgsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.gz
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.bz2
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.lz
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.xz
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.zst
gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.zip
Fix few 'may be used uninitialized' compiler warnings
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-editor.c')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
index d6a373ad38..57d2acde99 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -780,7 +780,7 @@ contact_list_editor_remove_button_clicked_cb (GtkWidget *widget)
{
EContactListEditor *editor;
GtkTreeSelection *selection;
- GtkTreeRowReference *new_selection;
+ GtkTreeRowReference *new_selection = NULL;
GtkTreeModel *model;
GtkTreeView *view;
GtkTreePath *path;