From 12428e3a01d519b92a1bb1e35f02f175409729c3 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 18 May 2011 16:15:20 -0400 Subject: Bug 650522 - em-format-html: Fix uninitialized variable --- mail/em-format-html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail/em-format-html.c b/mail/em-format-html.c index f2191c507c..37676aef83 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -2797,7 +2797,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 (""); -- cgit v1.2.3