diff options
author | Milan Crha <mcrha@redhat.com> | 2014-03-14 21:19:39 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-03-14 21:19:39 +0800 |
commit | 9cea5475976b74f3a0a937c578145a04161d7785 (patch) | |
tree | 0693c52fa267b1e6862f990abad1c4d0acc43a5c | |
parent | 9dab35655462690334fb8f487b91388beb2cfd76 (diff) | |
download | gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar.gz gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar.bz2 gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar.lz gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar.xz gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.tar.zst gsoc2013-evolution-9cea5475976b74f3a0a937c578145a04161d7785.zip |
Missing attachment button for attachments of a known type
If there was a known formatter for the attachment's mime type, the attachment
content was shown inline, without the attachment button, instead of it being
shown collapsed and with the corresponding button. All that caused by a variable
overwrite and a related memory leak.
-rw-r--r-- | em-format/e-mail-formatter-attachment.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/em-format/e-mail-formatter-attachment.c b/em-format/e-mail-formatter-attachment.c index c076d80085..0a921571a6 100644 --- a/em-format/e-mail-formatter-attachment.c +++ b/em-format/e-mail-formatter-attachment.c @@ -332,8 +332,6 @@ emfe_attachment_format (EMailFormatterExtension *extension, size = g_memory_output_stream_get_data_size ( G_MEMORY_OUTPUT_STREAM (content_stream)); - buffer = g_string_sized_new (size); - g_string_append_printf ( buffer, "<tr><td colspan=\"2\">" |