diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-17 20:18:03 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-17 20:18:03 +0800 |
commit | b7bc2ba10f00bf35fb6615e9565e69618b1528d3 (patch) | |
tree | 47e79666fe37801ef0f0866c0bcf21b4cc7b77e3 /libempathy | |
parent | 9b497ff832bbffab66eb193ebae190161db55757 (diff) | |
download | gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar.gz gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar.bz2 gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar.lz gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar.xz gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.tar.zst gsoc2013-empathy-b7bc2ba10f00bf35fb6615e9565e69618b1528d3.zip |
no need to check for the size of the hash table
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-account-manager.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libempathy/empathy-account-manager.c b/libempathy/empathy-account-manager.c index 45d906889..0bc0fe6f1 100644 --- a/libempathy/empathy-account-manager.c +++ b/libempathy/empathy-account-manager.c @@ -496,8 +496,7 @@ do_dispose (GObject *obj) priv->dispose_run = TRUE; - if (priv->create_results != NULL && - g_hash_table_size (priv->create_results) > 0) + if (priv->create_results != NULL) { /* the manager is being destroyed while there are account creation * processes pending; this should not happen, but emit the callbacks |