diff options
author | Colin Walters <walters@verbum.org> | 2011-05-19 04:15:20 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-19 04:15:20 +0800 |
commit | 161575627b9efef71dadad5e84025164c19b04f8 (patch) | |
tree | 9518254daf239e247cdf88feb4c6ea238b7232e7 | |
parent | 158128ef783bde14a258429706a94e78b11a06a8 (diff) | |
download | gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar.gz gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar.bz2 gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar.lz gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar.xz gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.tar.zst gsoc2013-evolution-161575627b9efef71dadad5e84025164c19b04f8.zip |
Bug 650522 - em-format-html: Fix uninitialized variable
-rw-r--r-- | 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 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 (""); |