summaryrefslogtreecommitdiffstats
path: root/backgammon/common_source
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1999-07-26 18:39:06 +0000
committerhubertf <hubertf@NetBSD.org>1999-07-26 18:39:06 +0000
commitd555b76869e0798676e92a18ec773fdfdc54ba1f (patch)
treea8a5bae139b7c48968f65d8997df39551f3cd0d6 /backgammon/common_source
parent02a9c5ad2769cffcd3a98c3cbfe896960d0e9fc3 (diff)
downloadbsdgames-darwin-d555b76869e0798676e92a18ec773fdfdc54ba1f.tar.gz
bsdgames-darwin-d555b76869e0798676e92a18ec773fdfdc54ba1f.tar.zst
bsdgames-darwin-d555b76869e0798676e92a18ec773fdfdc54ba1f.zip
This adds a check for memory allocation failure to one place in
backgammon(6). The use of write(2) for the message may seem odd, but is used in another place in this game. (Actually, a lot of backgammon(6) could do with being substantially cleaned up.) Patch submitted in PR 8080 by Joseph Myers <jsm28@cam.ac.uk>
Diffstat (limited to 'backgammon/common_source')
-rw-r--r--backgammon/common_source/fancy.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/backgammon/common_source/fancy.c b/backgammon/common_source/fancy.c
index d0c362c8..a5eaa7db 100644
--- a/backgammon/common_source/fancy.c
+++ b/backgammon/common_source/fancy.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fancy.c,v 1.9 1999/02/10 17:08:06 hubertf Exp $ */
+/* $NetBSD: fancy.c,v 1.10 1999/07/26 18:39:06 hubertf Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)fancy.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: fancy.c,v 1.9 1999/02/10 17:08:06 hubertf Exp $");
+__RCSID("$NetBSD: fancy.c,v 1.10 1999/07/26 18:39:06 hubertf Exp $");
#endif
#endif /* not lint */
@@ -733,5 +733,9 @@ getcaps(s)
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);
}