commit 52e2e52db39e4ebacc8926437c86ddef8009d22a
parent 3f0e42c13ba13d87ebf27d8f77c369978b11c153
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Tue, 15 Aug 2017 12:04:52 +0200
tweaks: allow enough space for the Y/N/A characters [coverity scan]
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/prompt.c b/src/prompt.c
@@ -709,7 +709,7 @@ int do_yesno_prompt(bool all, const char *msg)
functionptrtype func;
if (!ISSET(NO_HELP)) {
- char shortstr[3];
+ char shortstr[MAXCHARLEN + 2];
/* Temporary string for (translated) " Y", " N" and " A". */
if (COLS < 32)