diff options
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index e17d3c2daf..80a37c15ec 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -303,8 +303,11 @@ void mail_msg_cancel (guint msgid) m = g_hash_table_lookup (mail_msg_active_table, GINT_TO_POINTER (msgid)); - if (m != NULL && m->cancel != NULL && !camel_operation_cancel_check (m->cancel)) + if (m != NULL && m->cancel != NULL && !camel_operation_cancel_check (m->cancel)) { + g_signal_handlers_block_by_func (m->cancel, mail_msg_cancelled, GINT_TO_POINTER (m->seq)); camel_operation_cancel (m->cancel); + g_signal_handlers_unblock_by_func (m->cancel, mail_msg_cancelled, GINT_TO_POINTER (m->seq)); + } g_mutex_unlock (mail_msg_lock); } |