diff --git a/src/getchar.c b/src/getchar.c index 3d73a6c7b6..165a6a3ad7 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -3645,7 +3645,11 @@ getcmdkeycmd( got_int = FALSE; while (c1 != NUL && !aborted) { - ga_grow(&line_ga, 32); + if (ga_grow(&line_ga, 32) != OK) + { + aborted = TRUE; + break; + } if (vgetorpeek(FALSE) == NUL) { diff --git a/src/version.c b/src/version.c index 5978bdce54..4f03b2627c 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1991, /**/ 1990, /**/