diff options
-rw-r--r-- | sys/kern/kern_subr.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c index 69ce291..e2c9efe 100644 --- a/sys/kern/kern_subr.c +++ b/sys/kern/kern_subr.c @@ -491,9 +491,6 @@ iov_to_uio(struct iovec *iovp, u_int iovcnt, struct uio *auio) u_int iovlen; struct iovec *iov = NULL; - if (iovcnt < 0) - panic("iovcnt < 0!\n"); - /* note: can't use iovlen until iovcnt is validated */ iovlen = iovcnt * sizeof (struct iovec); if (iovcnt > UIO_MAXIOV) { |