[evolution/webkit] Bug #640829 - Can drop text/plain message lines in message preview
- From: Dan VrÃtil <dvratil src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/webkit] Bug #640829 - Can drop text/plain message lines in message preview
- Date: Mon, 11 Jul 2011 14:14:24 +0000 (UTC)
commit 68f90e37ca49ddf0d9e67e29cafb2c81ec752297
Author: Milan Crha <mcrha redhat com>
Date: Mon Feb 21 13:19:36 2011 +0100
Bug #640829 - Can drop text/plain message lines in message preview
em-format/em-inline-filter.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/em-format/em-inline-filter.c b/em-format/em-inline-filter.c
index 23e5a6f..117ddb5 100644
--- a/em-format/em-inline-filter.c
+++ b/em-format/em-inline-filter.c
@@ -198,6 +198,7 @@ inline_filter_scan (CamelMimeFilter *f, gchar *in, gsize len, gint final)
while (inptr < inend) {
gint rest_len;
+ gboolean set_null_byte = FALSE;
start = inptr;
@@ -213,10 +214,12 @@ inline_filter_scan (CamelMimeFilter *f, gchar *in, gsize len, gint final)
}
rest_len = inend - start;
- if (inptr < inend)
+ if (inptr < inend) {
*inptr++ = 0;
+ set_null_byte = TRUE;
+ }
- #define restore_inptr() G_STMT_START { if (inptr < inend) inptr[-1] = '\n'; } G_STMT_END
+ #define restore_inptr() G_STMT_START { if (set_null_byte) inptr[-1] = '\n'; } G_STMT_END
switch (emif->state) {
case EMIF_PLAIN:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]