summaryrefslogtreecommitdiffstats
path: root/snake
diff options
context:
space:
mode:
authorabs <abs@NetBSD.org>2006-03-17 23:15:02 +0000
committerabs <abs@NetBSD.org>2006-03-17 23:15:02 +0000
commit3d3f1828613ad847852d189b6c406c539cc7a0d3 (patch)
tree824dfa6dfac86daa0a2db86eb013599b3044795e /snake
parent90015c74726f52760b0a78753b8d298bf9411018 (diff)
downloadbsdgames-darwin-3d3f1828613ad847852d189b6c406c539cc7a0d3.tar.gz
bsdgames-darwin-3d3f1828613ad847852d189b6c406c539cc7a0d3.tar.zst
bsdgames-darwin-3d3f1828613ad847852d189b6c406c539cc7a0d3.zip
Fix overrun in players[] array. Addresses Coverty CID 1457
Diffstat (limited to 'snake')
-rw-r--r--snake/snscore/snscore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/snake/snscore/snscore.c b/snake/snscore/snscore.c
index a0e928c7..05f1bd0e 100644
--- a/snake/snscore/snscore.c
+++ b/snake/snscore/snscore.c
@@ -1,4 +1,4 @@
-/* $NetBSD: snscore.c,v 1.15 2004/01/27 20:30:30 jsm Exp $ */
+/* $NetBSD: snscore.c,v 1.16 2006/03/17 23:15:02 abs Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)snscore.c 8.1 (Berkeley) 7/19/93";
#else
-__RCSID("$NetBSD: snscore.c,v 1.15 2004/01/27 20:30:30 jsm Exp $");
+__RCSID("$NetBSD: snscore.c,v 1.16 2006/03/17 23:15:02 abs Exp $");
#endif
#endif /* not lint */
@@ -91,7 +91,7 @@ main()
if(fread(&score, sizeof(short), 1, fd) == 0)
break;
if (score > 0) {
- if (noplayers > MAXPLAYERS) {
+ if (noplayers >= MAXPLAYERS) {
printf("too many players\n");
exit(2);
}