Also handle zero return from dscheck().

PR:		15956
This commit is contained in:
Poul-Henning Kamp 2000-01-10 12:21:39 +00:00
parent daa40efd8c
commit d685023e68

View File

@ -193,7 +193,7 @@ diskstrategy(struct buf *bp)
return;
}
if (dscheck(bp, dp->d_slice) < 0) {
if (dscheck(bp, dp->d_slice) <= 0) {
biodone(bp);
return;
}