Mercurial > hg > early-roguelike
diff arogue5/options.c @ 310:827441d05b3e
Advanced Rogue family: fix some potential buffer overflows.
Some code for determining the score file location assumed that PATH_MAX
would be less than 1024, which cannot be guaranteed.
Advanced Rogue 5 and 7, and XRogue, have had the buffers for the file
name enlarged. UltraRogue never called the functions, so the code has
been deleted instead.
author | John "Elwin" Edwards |
---|---|
date | Mon, 03 May 2021 19:05:37 -0400 |
parents | e52a8a7ad4c5 |
children |
line wrap: on
line diff
--- a/arogue5/options.c Sun May 02 21:54:11 2021 -0400 +++ b/arogue5/options.c Mon May 03 19:05:37 2021 -0400 @@ -17,6 +17,7 @@ #include "curses.h" #include <ctype.h> #include <string.h> +#include <limits.h> #include "rogue.h" #define NUM_OPTS (sizeof optlist / sizeof (OPTION)) @@ -91,7 +92,7 @@ /* For the score file, which must be opened. */ int get_score(char *optstr, WINDOW *win) { - char old_score_file[LINELEN]; + char old_score_file[PATH_MAX]; int status; if (use_savedir)