[evolution/webkit] Bug 650522 - em-format-html: Fix uninitialized variable



commit 620deaf661f275c395cb42ec031f98e194cf9016
Author: Colin Walters <walters verbum org>
Date:   Wed May 18 16:15:20 2011 -0400

    Bug 650522 - em-format-html: Fix uninitialized variable

 mail/em-format-html.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 470e599..34c474f 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -2795,7 +2795,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;
+		gchar *subject = _("(no subject)");
 		struct _camel_header_address *addrs = NULL;
 		GString *from = g_string_new ("");
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]