From d555b76869e0798676e92a18ec773fdfdc54ba1f Mon Sep 17 00:00:00 2001 From: hubertf Date: Mon, 26 Jul 1999 18:39:06 +0000 Subject: 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 --- backgammon/common_source/fancy.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'backgammon/common_source') 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); } -- cgit v1.2.3-56-ge451