aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact.c
diff options
context:
space:
mode:
authorAlban Crequy <alban.crequy@collabora.co.uk>2011-08-23 20:58:21 +0800
committerAlban Crequy <alban.crequy@collabora.co.uk>2011-08-23 20:58:21 +0800
commitd74b1775e5f237869bdc2177064ea82aa370ac42 (patch)
treecd1a07424141970596e36b5ab464768622803edd /libempathy/empathy-contact.c
parentec1594416d7fc29c7baeeb10f7645934a9679bb5 (diff)
downloadgsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar.gz
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar.bz2
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar.lz
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar.xz
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.tar.zst
gsoc2013-empathy-d74b1775e5f237869bdc2177064ea82aa370ac42.zip
geocode: fix uninitialized variable (-Werror=uninitialized)
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r--libempathy/empathy-contact.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c
index 2058d4075..c6225c191 100644
--- a/libempathy/empathy-contact.c
+++ b/libempathy/empathy-contact.c
@@ -1614,7 +1614,7 @@ geocode_cb (GObject *source,
EmpathyContactPriv *priv = GET_PRIV (contact);
GError *error = NULL;
GHashTable *new_location;
- GHashTable *resolved;
+ GHashTable *resolved = NULL;
gdouble latitude, longitude;
if (priv->location == NULL)