diff options
author | Milan Crha <mcrha@redhat.com> | 2012-09-10 17:56:48 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-09-10 17:56:48 +0800 |
commit | 8048b5a2c56e6712b757f3b210d4900264486f99 (patch) | |
tree | 503de4796f37ece50d1620c833fd274c362bb6ea /libemail-engine | |
parent | f43dfcf87101e94d0437fa933814a2170d395420 (diff) | |
download | gsoc2013-evolution-8048b5a2c56e6712b757f3b210d4900264486f99.tar.gz gsoc2013-evolution-8048b5a2c56e6712b757f3b210d4900264486f99.tar.zst gsoc2013-evolution-8048b5a2c56e6712b757f3b210d4900264486f99.zip |
Bug #683349 - Crash when sending a mail from the Outbox folder
Diffstat (limited to 'libemail-engine')
-rw-r--r-- | libemail-engine/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libemail-engine/mail-ops.c b/libemail-engine/mail-ops.c index f0632a4776..0f1ca47f07 100644 --- a/libemail-engine/mail-ops.c +++ b/libemail-engine/mail-ops.c @@ -1051,7 +1051,7 @@ mail_send_queue (EMailSession *session, m->queue = g_object_ref (queue); m->transport = g_object_ref (transport); if (G_IS_CANCELLABLE (cancellable)) - m->base.cancellable = cancellable; + m->base.cancellable = g_object_ref (cancellable); m->status = status; m->status_data = status_data; m->done = done; |