From owner-cvs-all Sun Jan 16 10: 0:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82DEE14FF3; Sun, 16 Jan 2000 10:00:08 -0800 (PST) (envelope-from shin@FreeBSD.org) Received: (from shin@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA89136; Sun, 16 Jan 2000 10:00:08 -0800 (PST) (envelope-from shin@FreeBSD.org) Message-Id: <200001161800.KAA89136@freefall.freebsd.org> From: Yoshinobu Inoue Date: Sun, 16 Jan 2000 10:00:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 in6_pcb.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk shin 2000/01/16 10:00:08 PST Modified files: sys/netinet6 in6_pcb.c Log: fix kernel panic at rtfree() in INET6 enabled envrionment. This is probably due to twice rtfree() in in6_pcbdetach(), one for inp->in6p_route.ro_rt, and another one for inp->inp_route.ro_rt. But these 2 are actually shared in inpcb, so 2nd rtfree() is not necessary. Revision Changes Path 1.10 +2 -4 src/sys/netinet6/in6_pcb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message