diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-04-06 09:13:37 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-04-06 09:13:37 +0800 |
commit | 0828f35962a45c0f206d1f7d260783e282a55ecf (patch) | |
tree | 98122f7df1de46f284f03741f60fe19759fb0d36 /mail/em-format-quote.c | |
parent | 5cbf864dca7165ac60e3ce2eb6799228fbedef2c (diff) | |
download | gsoc2013-evolution-0828f35962a45c0f206d1f7d260783e282a55ecf.tar.gz gsoc2013-evolution-0828f35962a45c0f206d1f7d260783e282a55ecf.tar.zst gsoc2013-evolution-0828f35962a45c0f206d1f7d260783e282a55ecf.zip |
Fix a corner case that I missed in my last commit.
2008-04-05 Matthew Barnes <mbarnes@redhat.com>
* mail/em-composer-prefs.c:
Fix a corner case that I missed in my last commit.
svn path=/trunk/; revision=35324
Diffstat (limited to 'mail/em-format-quote.c')
-rw-r--r-- | mail/em-format-quote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-quote.c b/mail/em-format-quote.c index 3f52b802ba..401801b510 100644 --- a/mail/em-format-quote.c +++ b/mail/em-format-quote.c @@ -295,7 +295,7 @@ emfq_format_header (EMFormat *emf, CamelStream *stream, CamelMedium *part, const { CamelMimeMessage *msg = (CamelMimeMessage *) part; EMFormatQuote *emfq = (EMFormatQuote *) emf; - char *name, *buf, *value = NULL, *p; + char *name, *buf, *value = NULL; const char *txt, *label; gboolean addrspec = FALSE; int is_html = FALSE; |