summaryrefslogtreecommitdiff
path: root/sys/arch/mips
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-08 04:29:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-08 04:29:12 +0000
commit35c2bff255654ea2902e9b996e5711d755659967 (patch)
treed3bb71382e3fd610b239be8889b28e5745ff07db /sys/arch/mips
parent686c4b6f344a5a27aa0ff9967507d7d8aea15be1 (diff)
check for lp->d_secpercyl == 0) in bounds_check_with_label()
Diffstat (limited to 'sys/arch/mips')
-rw-r--r--sys/arch/mips/mips/disksubr.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mips/mips/disksubr.c b/sys/arch/mips/mips/disksubr.c
index 36aee7976bc..28e9f81be00 100644
--- a/sys/arch/mips/mips/disksubr.c
+++ b/sys/arch/mips/mips/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.7 1998/11/21 20:43:44 deraadt Exp $ */
+/* $OpenBSD: disksubr.c,v 1.8 1999/01/08 04:29:07 millert Exp $ */
/* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */
/*
@@ -503,6 +503,12 @@ bounds_check_with_label(bp, lp, osdep, wlabel)
LABELSECTOR;
int sz = howmany(bp->b_bcount, DEV_BSIZE);
+ /* avoid division by zero */
+ if (lp->d_secpercyl == 0) {
+ bp->b_error = EINVAL;
+ goto bad;
+ }
+
if (bp->b_blkno + sz > blockpersec(p->p_size, lp)) {
sz = blockpersec(p->p_size, lp) - bp->b_blkno;
if (sz == 0) {