summaryrefslogtreecommitdiff
path: root/alpine/send.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2017-03-23 11:40:01 -0600
committerEduardo Chappa <chappa@washington.edu>2017-03-23 11:40:01 -0600
commit872c73cb757d6155cb80bb8a5474854444f3f4dd (patch)
tree834e7b37c4a18200dc50732bc4fc47f4a2a4d3ef /alpine/send.c
parent51173597a145f096d5e846ef4c444754895bac6b (diff)
downloadalpine-872c73cb757d6155cb80bb8a5474854444f3f4dd.tar.xz
* crash in bounce command due to not enough space allocated for key
menu array. The crash can be reproduced when Alpine is built with clang, but not gcc. Reported by David Sewell.
Diffstat (limited to 'alpine/send.c')
-rw-r--r--alpine/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alpine/send.c b/alpine/send.c
index ef9cdf49..bd5fa3c0 100644
--- a/alpine/send.c
+++ b/alpine/send.c
@@ -1056,7 +1056,7 @@ pine_simple_send(ENVELOPE *outgoing, /* envelope for outgoing message */
int og2s_done = 0;
HelpType help;
static HISTORY_S *history = NULL;
- ESCKEY_S ekey[5];
+ ESCKEY_S ekey[6];
BUILDER_ARG ba_fcc;
METAENV *header;
ACTION_S *role = rolep ? *rolep : NULL;