https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241639

--- Comment #36 from Konstantin Belousov <k...@freebsd.org> ---
(In reply to Michael from comment #35)
Sigh, try this

diff --git a/sys/kern/kern_linker.c b/sys/kern/kern_linker.c
index 6dc21886066..ed6a8f793ea 100644
--- a/sys/kern/kern_linker.c
+++ b/sys/kern/kern_linker.c
@@ -1066,6 +1066,9 @@ kern_kldload(struct thread *td, const char *file, int
*fileid)
        if ((error = priv_check(td, PRIV_KLD_LOAD)) != 0)
                return (error);

+       if (td->td_proc->p_fd->fd_rdir == NULL)
+               return (EINVAL);
+
        /*
         * It is possible that kldloaded module will attach a new ifnet,
         * so vnet context must be set when this ocurs.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to