diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-04 03:02:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-09 18:33:30 +0800 |
commit | 209168921d0e6cbc38c6856e45af7085696b961e (patch) | |
tree | a60be9f7802fc4f715ba1169df40b818da72ce2e /widgets | |
parent | 21ac085551d7c16dd900742a00ca8ef376b77a03 (diff) | |
download | gsoc2013-evolution-209168921d0e6cbc38c6856e45af7085696b961e.tar.gz gsoc2013-evolution-209168921d0e6cbc38c6856e45af7085696b961e.tar.zst gsoc2013-evolution-209168921d0e6cbc38c6856e45af7085696b961e.zip |
Fix a runtime warning for zero-length attachments.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-attachment.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/widgets/misc/e-attachment.c b/widgets/misc/e-attachment.c index 35c377abe5..ba2811d5d9 100644 --- a/widgets/misc/e-attachment.c +++ b/widgets/misc/e-attachment.c @@ -2430,10 +2430,14 @@ attachment_save_got_output_stream (SaveContext *save_context) camel_data_wrapper_decode_to_stream (wrapper, stream); camel_object_unref (stream); - /* Load the buffer into a GMemoryInputStream. */ - input_stream = g_memory_input_stream_new_from_data ( - buffer->data, (gssize) buffer->len, - (GDestroyNotify) g_free); + /* Load the buffer into a GMemoryInputStream. + * But watch out for zero length MIME parts. */ + input_stream = g_memory_input_stream_new (); + if (buffer->len > 0) + g_memory_input_stream_add_data ( + G_MEMORY_INPUT_STREAM (input_stream), + buffer->data, (gssize) buffer->len, + (GDestroyNotify) g_free); save_context->input_stream = input_stream; save_context->total_num_bytes = (goffset) buffer->len; g_byte_array_free (buffer, FALSE); |