From f815a6b963bcb7ed8ca2e2c24b66e1858f0e01a0 Mon Sep 17 00:00:00 2001 From: Mirco Tischler Date: Sun, 15 Mar 2015 11:37:53 +0100 Subject: [PATCH] libempathy-gtk: fix uninitialized variable With -Werror this broke the build. --- libempathy-gtk/empathy-contact-chooser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libempathy-gtk/empathy-contact-chooser.c b/libempathy-gtk/empathy-contact-chooser.c index b82aa93a..05dbe344 100644 --- a/libempathy-gtk/empathy-contact-chooser.c +++ b/libempathy-gtk/empathy-contact-chooser.c @@ -213,7 +213,7 @@ get_contacts_cb (GObject *source, GError *error = NULL; FolksIndividual *individual; TpContact *contact; - EmpathyContact *emp_contact; + EmpathyContact *emp_contact = NULL; self = tp_weak_ref_dup_object (wr); if (self == NULL) -- 2.39.2