svn commit: r338446 - head/sys/netinet
Mark Johnston
markj at FreeBSD.org
Mon Sep 3 17:39:10 UTC 2018
Author: markj
Date: Mon Sep 3 17:39:09 2018
New Revision: 338446
URL: https://svnweb.freebsd.org/changeset/base/338446
Log:
Use the correct malloc type in in_pcblbgroup_free().
Approved by: re (kib)
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/netinet/in_pcb.c
Modified: head/sys/netinet/in_pcb.c
==============================================================================
--- head/sys/netinet/in_pcb.c Mon Sep 3 14:43:16 2018 (r338445)
+++ head/sys/netinet/in_pcb.c Mon Sep 3 17:39:09 2018 (r338446)
@@ -244,7 +244,7 @@ in_pcblbgroup_free(struct inpcblbgroup *grp)
{
LIST_REMOVE(grp, il_list);
- free(grp, M_TEMP);
+ free(grp, M_PCB);
}
static struct inpcblbgroup *
More information about the svn-src-all
mailing list