[evolution/webkit] Bug #653466 - Crash in efh_format_headers
- From: Dan VrÃtil <dvratil src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/webkit] Bug #653466 - Crash in efh_format_headers
- Date: Mon, 11 Jul 2011 14:58:37 +0000 (UTC)
commit 1f12446e4973d745576f16306b56bf31e214cb41
Author: Milan Crha <mcrha redhat com>
Date: Mon Jun 27 18:25:12 2011 +0200
Bug #653466 - Crash in efh_format_headers
mail/em-format-html.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 14a03ed..9d421cd 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -2794,7 +2794,7 @@ efh_format_headers (EMFormatHTML *efh,
/* If the header is collapsed, display just subject and sender in one row and leave */
if (efh->priv->headers_state == EM_FORMAT_HTML_HEADERS_STATE_COLLAPSED && efh->priv->headers_collapsable) {
- gchar *subject = _("(no subject)");
+ gchar *subject = NULL;
struct _camel_header_address *addrs = NULL;
GString *from = g_string_new ("");
@@ -2815,6 +2815,7 @@ efh_format_headers (EMFormatHTML *efh,
} else if (!g_ascii_strcasecmp (header->name, "Subject")) {
gchar *buf = NULL;
buf = camel_header_unfold (header->value);
+ g_free (subject);
subject = camel_header_decode_string (buf, hdr_charset);
g_free (buf);
}
@@ -2822,10 +2823,9 @@ efh_format_headers (EMFormatHTML *efh,
}
camel_stream_printf (stream, "<tr><td width=\"20\" valign=\"top\"><a href=\"##HEADERS##\"><img src=\"%s/plus.png\"></a></td><td><strong>%s</strong> %s%s%s</td></tr>",
- evolution_imagesdir, subject, from->len ? "(" : "", from->str, from->len ? ")" : "");
+ evolution_imagesdir, subject ? subject : _("(no subject)"), from->len ? "(" : "", from->str, from->len ? ")" : "");
g_free (subject);
- g_free (header);
if (addrs)
camel_header_address_list_clear (&addrs);
g_string_free (from, TRUE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]