summaryrefslogtreecommitdiff
path: root/games/boggle
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2016-09-12 20:11:11 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2016-09-12 20:11:11 +0000
commitca552b91fb7a60c3200564acb30ea4af46249ffe (patch)
treef3aa0db9ba73c84729abeb26fed9541d204b508e /games/boggle
parent7d69051ed36ba0a26342ff530bb83aea2753de30 (diff)
If boardspec doesn't consist entirely of lower case letters, there will be
out of bound accesses of arrays, leading to sefaults or bus errors. Verify that at most one boardspec with lower case letters is given, or error out. ok millert
Diffstat (limited to 'games/boggle')
-rw-r--r--games/boggle/boggle/bog.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/games/boggle/boggle/bog.c b/games/boggle/boggle/bog.c
index 8384db2baac..4955bc8c9ac 100644
--- a/games/boggle/boggle/bog.c
+++ b/games/boggle/boggle/bog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bog.c,v 1.32 2016/09/12 14:38:58 otto Exp $ */
+/* $OpenBSD: bog.c,v 1.33 2016/09/12 20:11:10 tb Exp $ */
/* $NetBSD: bog.c,v 1.5 1995/04/24 12:22:32 cgd Exp $ */
/*-
@@ -142,18 +142,16 @@ main(int argc, char *argv[])
argv += 1;
}
- if (argc > 0) {
- if (islower((unsigned char)argv[0][0])) {
- if (strlen(argv[0]) != ncubes) {
- usage();
- } else {
- /* This board is assumed to be valid... */
- bspec = argv[0];
- }
- } else {
- usage();
- }
- }
+ if (argc == 1) {
+ if (strlen(argv[0]) != ncubes)
+ usage();
+ for (p = argv[0]; *p != '\0'; p++)
+ if (!islower((unsigned char)*p))
+ errx(1, "only lower case letters are allowed "
+ "in boardspec");
+ bspec = argv[0];
+ } else if (argc != 0)
+ usage();
if (batch && bspec == NULL)
errx(1, "must give both -b and a board setup");