diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2009-06-09 18:29:07 +0800 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2009-06-09 18:31:57 +0800 |
commit | 08fb04d03b17c44e401d89cfd0e957c41cdf3b56 (patch) | |
tree | 6bd79e419ade9871c2c7bc9a8c4f055500f16871 /libempathy | |
parent | 01db736d42599437458371dbd2a66030647de7e2 (diff) | |
download | gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar.gz gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar.bz2 gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar.lz gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar.xz gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.tar.zst gsoc2013-empathy-08fb04d03b17c44e401d89cfd0e957c41cdf3b56.zip |
Remove outstanding operations before dispatching them
Fixes #585231
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index 0f9cc7746..b51df95fa 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -532,8 +532,8 @@ dispatcher_flush_outstanding_operations (EmpathyDispatcher *self, if (dispatcher_operation_can_start (self, operation, cd)) { - dispatcher_start_dispatching (dispatcher, operation, cd); g_hash_table_iter_remove (&iter); + dispatcher_start_dispatching (dispatcher, operation, cd); } } } |