Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2013 11:29:17 -0700
From:      Loganaden Velvindron <logan@elandsys.com>
To:        freebsd-net@freebsd.org
Cc:        gnn@freebsd.org
Subject:   mbuf leakage fix
Message-ID:  <20131004182917.GA18870@mx.elandsys.com>

next in thread | raw e-mail | index | archive | help
Hi,
>From netbsd.


Index: ip6_mroute.c
===================================================================
--- ip6_mroute.c	(revision 255947)
+++ ip6_mroute.c	(working copy)
@@ -616,7 +616,7 @@
 			for (rte = rt->mf6c_stall; rte != NULL; ) {
 				struct rtdetq *n = rte->next;
 
-				m_free(rte->m);
+				m_freem(rte->m);
 				free(rte, M_MRTABLE6);
 				rte = n;
 			}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20131004182917.GA18870>