diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-13 09:43:37 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-13 09:43:37 +0800 |
commit | f8c480420f3129fce7ff06551d74a41f97fde216 (patch) | |
tree | 4716249e370d0eab6e5597ba88f9e9779ee9bebd /widgets | |
parent | b7fbe1d689879c7c1639129b8ebe518a29242477 (diff) | |
download | gsoc2013-evolution-f8c480420f3129fce7ff06551d74a41f97fde216.tar.gz gsoc2013-evolution-f8c480420f3129fce7ff06551d74a41f97fde216.tar.zst gsoc2013-evolution-f8c480420f3129fce7ff06551d74a41f97fde216.zip |
Bug 440919 – Evolution can't attach "zero length" files
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-attachment.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/widgets/misc/e-attachment.c b/widgets/misc/e-attachment.c index 537a3470d7..67647116e3 100644 --- a/widgets/misc/e-attachment.c +++ b/widgets/misc/e-attachment.c @@ -418,6 +418,10 @@ attachment_progress_cb (goffset current_num_bytes, goffset total_num_bytes, EAttachment *attachment) { + /* Avoid dividing by zero. */ + if (total_num_bytes == 0) + return; + attachment->priv->percent = (current_num_bytes * 100) / total_num_bytes; @@ -1493,6 +1497,12 @@ attachment_load_finish (LoadContext *load_context) if (disposition != NULL) camel_mime_part_set_disposition (mime_part, disposition); + /* Correctly report the size of zero length special files. */ + if (g_file_info_get_size (file_info) == 0) { + g_file_info_set_size (file_info, size); + attachment_set_file_info (attachment, file_info); + } + g_simple_async_result_set_op_res_gpointer ( simple, mime_part, (GDestroyNotify) camel_object_unref); |