aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2022-04-12 21:30:04 +0000
committerMark Johnston <markj@FreeBSD.org>2022-04-12 21:30:04 +0000
commitd769609620931a62ebacbd4f1f5fd048c7e3d7c0 (patch)
tree65f5247f97016fd46408665831e74e9965b358de
parent6e563a1b608438504d963c2d7c70e50d2e75af46 (diff)
downloadsrc-d769609620931a62ebacbd4f1f5fd048c7e3d7c0.tar.gz
src-d769609620931a62ebacbd4f1f5fd048c7e3d7c0.zip
tty: Remove an incorrect assertion from ttyinq_line_iterate()
We may legitimately have tib == NULL if we're at the very end of the queue. PR: 215373 Reported by: pho MFC after: 1 week Sponsored by: The FreeBSD Foundation
-rw-r--r--sys/kern/tty_inq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/kern/tty_inq.c b/sys/kern/tty_inq.c
index bd26211735d2..069da33ab26a 100644
--- a/sys/kern/tty_inq.c
+++ b/sys/kern/tty_inq.c
@@ -464,7 +464,6 @@ ttyinq_line_iterate(struct ttyinq *ti,
/* Last byte iterated - go to the next block. */
if (boff == TTYINQ_DATASIZE - 1)
tib = tib->tib_next;
- MPASS(tib != NULL);
}
}