You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-misc/bsd-games/files/bsd-games-2.17-bg.patch

23 lines
660 B

--- a/backgammon/common_source/fancy.c
+++ b/backgammon/common_source/fancy.c
@@ -58,7 +58,7 @@
int lUP; /* length of UP */
int CO; /* number of columns */
int LI; /* number of lines */
-int *linect; /* array of lengths of lines on screen (the
+static int linect[25]; /* array of lengths of lines on screen (the
* actual screen is not stored) */
/* two letter codes */
@@ -728,10 +728,5 @@
lND = strlen(ND);
if (LI < 24 || CO < 72 || !(CL && UP && ND))
return (0);
- linect = (int *) calloc(LI + 1, sizeof(int));
- if (linect == NULL) {
- write(2, "\r\nOut of memory!\r\n", 18);
- getout(0);
- }
return (1);
}