summaryrefslogtreecommitdiff
path: root/src/mcd-account.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mcd-account.c')
-rw-r--r--src/mcd-account.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mcd-account.c b/src/mcd-account.c
index 48880bef..1ed237bb 100644
--- a/src/mcd-account.c
+++ b/src/mcd-account.c
@@ -774,6 +774,10 @@ mcd_account_delete (McdAccount *account,
mcd_storage_commit (priv->storage, name);
+ /* The callback may drop the latest ref on @account so make sure it stays
+ * alive while we still need it. */
+ g_object_ref (account);
+
if (callback != NULL)
callback (account, NULL, user_data);
@@ -788,6 +792,7 @@ mcd_account_delete (McdAccount *account,
}
unregister_dbus_service (account);
+ g_object_unref (account);
}
void