From eae07d39d08ef7568acd9b594dfd0172b1f7613d Mon Sep 17 00:00:00 2001 From: Pierre-Luc Beaudoin Date: Thu, 28 May 2009 14:59:57 -0400 Subject: =?UTF-8?q?Fix=20=E2=80=98lat=E2=80=99,=20=E2=80=98lon=E2=80=99=20?= =?UTF-8?q?may=20be=20used=20uninitialized=20in=20this=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libempathy-gtk/empathy-contact-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 9de8a6aad..6c1015364 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -1295,7 +1295,7 @@ contact_widget_location_update (EmpathyContactWidget *information) { GHashTable *location; GValue *value; - gdouble lat, lon; + gdouble lat = 0.0, lon = 0.0; gboolean has_position = TRUE; GtkWidget *label; guint row = 0; -- cgit v1.2.3