changeset: 6348:9bf7593e3c08 user: Michael Elkins <m...@sigpipe.org> date: Tue Mar 11 09:40:09 2014 -0700 link: http://dev.mutt.org/hg/mutt/rev/9bf7593e3c08
Fix buffer overrun caused by not updating a string length after address expansion. changeset: 6349:3c13c4188912 user: Michael Elkins <m...@sigpipe.org> date: Tue Mar 11 10:04:47 2014 -0700 link: http://dev.mutt.org/hg/mutt/rev/3c13c4188912 add user visible changes since 1.5.22 release. diffs (27 lines): diff -r 3d5e23a66a1a -r 3c13c4188912 UPDATING --- a/UPDATING Thu Oct 24 09:55:36 2013 -0700 +++ b/UPDATING Tue Mar 11 10:04:47 2014 -0700 @@ -4,6 +4,12 @@ The keys used are: !: modified feature, -: deleted feature, +: new feature +1.5.23 (2014-03-11): + + ! FCC is now preserved when postponing a message. + ! Mail-Followup-To is now preserved when recalling a postponed message. + ! Allow filename prompt when saving multiple attachments to a directory. + 1.5.22 (2013-10-18): ! $imap_keepalive default lowered to 300 diff -r 3d5e23a66a1a -r 3c13c4188912 copy.c --- a/copy.c Thu Oct 24 09:55:36 2013 -0700 +++ b/copy.c Tue Mar 11 10:04:47 2014 -0700 @@ -254,6 +254,7 @@ { if (!address_header_decode (&this_one)) rfc2047_decode (&this_one); + this_one_len = mutt_strlen (this_one); } if (!headers[x])