aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2010-12-05 01:23:43 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2010-12-05 01:23:43 +0800
commitceff90e7c349418ed74c3bc2346fdb9270d534c0 (patch)
treeab3919724cfd7c1fb4e27e89422dbc30b7c7de01
parente1873eec13666db81e379eb591b771a5d4122505 (diff)
downloadgsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar.gz
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar.bz2
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar.lz
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar.xz
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.tar.zst
gsoc2013-empathy-ceff90e7c349418ed74c3bc2346fdb9270d534c0.zip
Fix uninitialized use of a variable
-rw-r--r--libempathy/empathy-chatroom-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-chatroom-manager.c b/libempathy/empathy-chatroom-manager.c
index a4b95aadf..10b74d22a 100644
--- a/libempathy/empathy-chatroom-manager.c
+++ b/libempathy/empathy-chatroom-manager.c
@@ -486,7 +486,7 @@ account_manager_ready_cb (GObject *source_object,
EmpathyChatroomManagerPriv *priv = GET_PRIV (self);
TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
GError *error = NULL;
- GFile *file;
+ GFile *file = NULL;
if (!tp_account_manager_prepare_finish (manager, result, &error))
{