summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-01-31 08:32:18 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-01-31 08:32:18 +0000
commit7ca70ae31da08e3b3ac406295d84adbb074cbbdf (patch)
tree5e9d945994d17df590d9c488be14f79cfc134d01 /sys/netinet
parent50ae53e28a2fe2f2b5a9fd05f3ac852bb276d6de (diff)
it's obviously bed time... really avoid mbuf lossage if MGETHDR fails
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c
index 3e2dd813d80..8b505a7e64f 100644
--- a/sys/netinet/ip_ether.c
+++ b/sys/netinet/ip_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ether.c,v 1.16 2001/01/31 08:28:47 jason Exp $ */
+/* $OpenBSD: ip_ether.c,v 1.17 2001/01/31 08:32:17 jason Exp $ */
/*
* The author of this code is Angelos D. Keromytis (kermit@adk.gr)
@@ -342,7 +342,7 @@ etherip_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip,
if (m0 == NULL) {
DPRINTF(("etherip_output(): M_GETHDR failed\n"));
etheripstat.etherip_adrops++;
- m_free(m);
+ m_freem(m);
return ENOBUFS;
}
M_COPY_PKTHDR(m0, m);