diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-09-29 19:32:54 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-09-29 19:32:54 +0800 |
commit | e04d159e8c9cf6c11b22abdc233f314a8b4aea7b (patch) | |
tree | 4ca92391d050a4ca1f1fe103e1bb410ae5597f31 /mail/em-format-html.c | |
parent | 732c2ad067bcfe31e792f54c463f112eb85e55f2 (diff) | |
download | gsoc2013-evolution-e04d159e8c9cf6c11b22abdc233f314a8b4aea7b.tar.gz gsoc2013-evolution-e04d159e8c9cf6c11b22abdc233f314a8b4aea7b.tar.zst gsoc2013-evolution-e04d159e8c9cf6c11b22abdc233f314a8b4aea7b.zip |
** Fix for bug #341932 Patch from Roozbeh Pournader
svn path=/trunk/; revision=32830
Diffstat (limited to 'mail/em-format-html.c')
-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 bb46d73628..07050b31e5 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1683,7 +1683,7 @@ efh_format_header(EMFormat *emf, CamelStream *stream, CamelMedium *part, struct msg_offset -= local_tz / 60; if (msg_offset) { - char buf[32], *html; + char buf[256], *html; msg_offset += (local.tm_hour * 60) + local.tm_min; if (msg_offset >= (24 * 60) || msg_offset < 0) { |