]> granicus.if.org Git - mutt/commitdiff
increase size of buffer used for displaying addresses in the compose menu to avoid...
authorMichael Elkins <me@sigpipe.org>
Mon, 12 Apr 2010 03:00:38 +0000 (20:00 -0700)
committerMichael Elkins <me@sigpipe.org>
Mon, 12 Apr 2010 03:00:38 +0000 (20:00 -0700)
compose.c

index 788d68628ba8db0ac85fb328819d258e433a64d9..fa10c65af8826b55edb1f2bf3c0a841f99ad6875 100644 (file)
--- a/compose.c
+++ b/compose.c
@@ -241,7 +241,7 @@ check_attachments(ATTACHPTR **idx, short idxlen)
 
 static void draw_envelope_addr (int line, ADDRESS *addr)
 {
-  char buf[STRING];
+  char buf[LONG_STRING];
 
   buf[0] = 0;
   rfc822_write_address (buf, sizeof (buf), addr, 1);