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 *
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to