Merge fixes from 'NetHack-3.6' into NetHack-3.7-Jan2020
This commit is contained in:
@@ -241,7 +241,8 @@ void
|
||||
choose_windows(s)
|
||||
const char *s;
|
||||
{
|
||||
register int i;
|
||||
int i;
|
||||
char *tmps = 0;
|
||||
|
||||
for (i = 0; winchoices[i].procs; i++) {
|
||||
if ('+' == winchoices[i].procs->name[0])
|
||||
@@ -267,9 +268,22 @@ const char *s;
|
||||
windowprocs.win_wait_synch = def_wait_synch;
|
||||
|
||||
if (!winchoices[0].procs) {
|
||||
raw_printf("No window types?");
|
||||
raw_printf("No window types supported?");
|
||||
nh_terminate(EXIT_FAILURE);
|
||||
}
|
||||
/* 50: arbitrary, no real window_type names are anywhere near that long;
|
||||
used to prevent potential raw_printf() overflow if user supplies a
|
||||
very long string (on the order of 1200 chars) on the command line
|
||||
(config file options can't get that big; they're truncated at 1023) */
|
||||
#define WINDOW_TYPE_MAXLEN 50
|
||||
if (strlen(s) >= WINDOW_TYPE_MAXLEN) {
|
||||
tmps = (char *) alloc(WINDOW_TYPE_MAXLEN);
|
||||
(void) strncpy(tmps, s, WINDOW_TYPE_MAXLEN - 1);
|
||||
tmps[WINDOW_TYPE_MAXLEN - 1] = '\0';
|
||||
s = tmps;
|
||||
}
|
||||
#undef WINDOW_TYPE_MAXLEN
|
||||
|
||||
if (!winchoices[1].procs) {
|
||||
config_error_add(
|
||||
"Window type %s not recognized. The only choice is: %s",
|
||||
@@ -291,6 +305,8 @@ const char *s;
|
||||
config_error_add("Window type %s not recognized. Choices are: %s",
|
||||
s, buf);
|
||||
}
|
||||
if (tmps)
|
||||
free((genericptr_t) tmps) /*, tmps = 0*/ ;
|
||||
|
||||
if (windowprocs.win_raw_print == def_raw_print
|
||||
|| WINDOWPORT("safe-startup"))
|
||||
|
||||
Reference in New Issue
Block a user