aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-05-19 04:15:20 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:17 +0800
commit12428e3a01d519b92a1bb1e35f02f175409729c3 (patch)
tree10f0d40d7b3efa71b89a3a123f785cdbe4dd6f92 /mail
parente6031666023c3f81567350f637cfae6913166170 (diff)
downloadgsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar.gz
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar.bz2
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar.lz
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar.xz
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.tar.zst
gsoc2013-evolution-12428e3a01d519b92a1bb1e35f02f175409729c3.zip
Bug 650522 - em-format-html: Fix uninitialized variable
Diffstat (limited to 'mail')
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
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 ("");