summaryrefslogtreecommitdiff
path: root/libempathy-gtk/empathy-presence-chooser.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-09-11 12:35:26 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-09-11 15:10:43 +0200
commit6a5b51b273fc447c7611675b97268fc99216d430 (patch)
tree1c3b87bd9aea1d122dbb829c6c3bcec831fed9c6 /libempathy-gtk/empathy-presence-chooser.c
parent57b261b8329e12d1ffcc46e7ecfbeca2caa8fb4b (diff)
downloadempathy-6a5b51b273fc447c7611675b97268fc99216d430.tar.gz
use tp_account_manager_dup_valid_accounts()
tp_account_manager_get_valid_accounts() has been deprecated. Fix an accounts list leak in empathy-sanity-cleaning.
Diffstat (limited to 'libempathy-gtk/empathy-presence-chooser.c')
-rw-r--r--libempathy-gtk/empathy-presence-chooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c
index 08325d402..1eb4a48a5 100644
--- a/libempathy-gtk/empathy-presence-chooser.c
+++ b/libempathy-gtk/empathy-presence-chooser.c
@@ -759,7 +759,7 @@ update_sensitivity_am_prepared_cb (GObject *source_object,
return;
}
- accounts = tp_account_manager_get_valid_accounts (manager);
+ accounts = tp_account_manager_dup_valid_accounts (manager);
for (l = accounts ; l != NULL ; l = g_list_next (l)) {
TpAccount *a = TP_ACCOUNT (l->data);
@@ -770,7 +770,7 @@ update_sensitivity_am_prepared_cb (GObject *source_object,
}
}
- g_list_free (accounts);
+ g_list_free_full (accounts, g_object_unref);
if (!g_network_monitor_get_network_available (priv->connectivity))
sensitive = FALSE;