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

--- Comment #3 from Rick Macklem <[email protected]> ---
If you wanted to try something...
You could replace:
    KASSERT(inp != NULL, ("tcp_usr_close: inp == NULL"));
with
    if (inp == NULL)
         return;
at the beginning of tcp_usr_close() in /usr/src/sys/netinet/tcp_usrreq.c.

Then test to see what happens?

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to