diff options
author | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-08-09 20:10:59 +0800 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-08-14 23:20:28 +0800 |
commit | 77ea9d56fb15dfd6edb1554ba31c42a7789d62d1 (patch) | |
tree | 03dc3d971428d312a4260fb578a86482599bb90e /ubuntu-online-accounts | |
parent | d2b704165e9bf015400b72e95d443a67ebc3060e (diff) | |
download | gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar.gz gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar.bz2 gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar.lz gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar.xz gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.tar.zst gsoc2013-empathy-77ea9d56fb15dfd6edb1554ba31c42a7789d62d1.zip |
Use TpWeakRef when user_data of an async call is a widget
Keeping a ref on widgets is not enough to keep it alive, because
gtk_widget_destroy will run destroy even if there are still refs.
https://bugzilla.gnome.org/show_bug.cgi?id=680775
Diffstat (limited to 'ubuntu-online-accounts')
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin-widget.c | 12 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin-widget.c | 12 |
2 files changed, 20 insertions, 4 deletions
diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin-widget.c b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin-widget.c index d52b3a360..d07982a3b 100644 --- a/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin-widget.c +++ b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin-widget.c @@ -176,11 +176,18 @@ manager_prepared_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - EmpathyAppPluginWidget *self = user_data; + TpWeakRef *wr = user_data; + EmpathyAppPluginWidget *self = tp_weak_ref_dup_object (wr); TpAccountManager *manager = (TpAccountManager *) source; GList *accounts; GError *error = NULL; + if (self == NULL) + { + tp_weak_ref_destroy (wr); + return; + } + if (!tp_proxy_prepare_finish (manager, result, &error)) { g_debug ("Error preparing Account Manager: %s", error->message); @@ -215,6 +222,7 @@ manager_prepared_cb (GObject *source, g_list_free (accounts); out: + tp_weak_ref_destroy (wr); g_object_unref (self); } @@ -241,7 +249,7 @@ empathy_app_plugin_widget_constructed (GObject *object) * AgAccount */ manager = tp_account_manager_dup (); tp_proxy_prepare_async (manager, NULL, - manager_prepared_cb, g_object_ref (self)); + manager_prepared_cb, tp_weak_ref_new (self, NULL, NULL)); g_object_unref (manager); } diff --git a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin-widget.c b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin-widget.c index fe3b6fe5e..f76eb5cd4 100644 --- a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin-widget.c +++ b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin-widget.c @@ -291,11 +291,18 @@ manager_prepared_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - EmpathyAccountsPluginWidget *self = user_data; + TpWeakRef *wr = user_data; + EmpathyAccountsPluginWidget *self = tp_weak_ref_dup_object (wr); TpAccountManager *manager = (TpAccountManager *) source; GList *accounts; GError *error = NULL; + if (self == NULL) + { + tp_weak_ref_destroy (wr); + return; + } + if (!tp_proxy_prepare_finish (manager, result, &error)) { g_debug ("Error preparing Account Manager: %s", error->message); @@ -324,6 +331,7 @@ manager_prepared_cb (GObject *source, g_list_free (accounts); out: + tp_weak_ref_destroy (wr); g_object_unref (self); } @@ -354,7 +362,7 @@ empathy_accounts_plugin_widget_constructed (GObject *object) manager = tp_account_manager_dup (); tp_proxy_prepare_async (manager, NULL, - manager_prepared_cb, g_object_ref (self)); + manager_prepared_cb, tp_weak_ref_new (self, NULL, NULL)); g_object_unref (manager); return; } |