[DragonFlyBSD - Bug #2593] (Closed) ipv6: mbuf memory leak
bugtracker-admin at leaf.dragonflybsd.org
bugtracker-admin at leaf.dragonflybsd.org
Thu Apr 17 02:17:35 PDT 2014
Issue #2593 has been updated by profmakx.
Status changed from New to Closed
This was closed by Matt in commit de99dcea20f1d49646378f994f454faa5aad9401.
----------------------------------------
Bug #2593: ipv6: mbuf memory leak
http://bugs.dragonflybsd.org/issues/2593#change-11930
* Author: logan1
* Status: Closed
* Priority: Normal
* Assignee:
* Category:
* Target version:
----------------------------------------
>From NetBSD:
--- ip6_mroute.c.orig 2013-10-04 11:37:53.000000000 -0700
+++ ip6_mroute.c 2013-10-04 11:38:14.000000000 -0700
@@ -475,7 +475,7 @@ ip6_mrouter_done(void)
for (rte = rt->mf6c_stall; rte != NULL; ) {
struct rtdetq *n = rte->next;
- m_free(rte->m);
+ m_freem(rte->m);
kfree(rte, M_MRTABLE);
rte = n;
}
---Files--------------------------------
ipv6_mbuf_memory_leak.txt (339 Bytes)
--
You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account
More information about the Bugs
mailing list