diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 20:28:13 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2011-01-26 21:29:51 +0800 |
commit | bec9be034d439b51a5a81bbae54ce513e05d8cc3 (patch) | |
tree | 69846f626f46c5a6f08b98e9e7950f161694225f /libempathy | |
parent | 80a9d33725a6b00d6ee486ccc97e9c137d43e3c4 (diff) | |
download | gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar.gz gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar.bz2 gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar.lz gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar.xz gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.tar.zst gsoc2013-empathy-bec9be034d439b51a5a81bbae54ce513e05d8cc3.zip |
keyring: allow set and delete password to have NULL callbacks
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-keyring.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libempathy/empathy-keyring.c b/libempathy/empathy-keyring.c index 55ddd1f69..f3d523e54 100644 --- a/libempathy/empathy-keyring.c +++ b/libempathy/empathy-keyring.c @@ -145,7 +145,6 @@ empathy_keyring_set_password_async (TpAccount *account, g_return_if_fail (TP_IS_ACCOUNT (account)); g_return_if_fail (password != NULL); - g_return_if_fail (callback != NULL); simple = g_simple_async_result_new (G_OBJECT (account), callback, user_data, empathy_keyring_set_password_async); @@ -243,7 +242,6 @@ empathy_keyring_delete_password_async (TpAccount *account, const gchar *account_id; g_return_if_fail (TP_IS_ACCOUNT (account)); - g_return_if_fail (callback != NULL); simple = g_simple_async_result_new (G_OBJECT (account), callback, user_data, empathy_keyring_delete_password_async); |