aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2010-02-02 11:24:42 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-02-08 18:23:13 +0800
commit47ce699f4a9b8bd726330c39995f508fa819b85d (patch)
tree9493ca92d78513bfe793d4464ca17da630dd6f9f /src
parentd4088b6b8af17417b110927a73aa26c98680f208 (diff)
downloadgsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar.gz
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar.bz2
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar.lz
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar.xz
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.tar.zst
gsoc2013-empathy-47ce699f4a9b8bd726330c39995f508fa819b85d.zip
empathy.c: Initialise variable (#609030)
Fixes bug introduced in 24db41f217eea1cbf929cc3e623c50ca626db4b
Diffstat (limited to 'src')
-rw-r--r--src/empathy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy.c b/src/empathy.c
index f272ecfec..b52079090 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -374,8 +374,12 @@ do_show_accounts_ui (GtkWindow *window,
{
EmpathyConnectionManagers *cm_mgr;
+ cm_mgr = empathy_connection_managers_dup_singleton ();
+
empathy_connection_managers_prepare_async (cm_mgr,
connection_managers_prepare_for_accounts, NULL);
+
+ g_object_unref (cm_mgr);
}
}