From 50ae53e28a2fe2f2b5a9fd05f3ac852bb276d6de Mon Sep 17 00:00:00 2001 From: Jason Wright Date: Wed, 31 Jan 2001 08:28:48 +0000 Subject: oops, avoid mbuf lossage if MGETHDR fails --- sys/netinet/ip_ether.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/netinet/ip_ether.c') diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c index 341128d24de..3e2dd813d80 100644 --- a/sys/netinet/ip_ether.c +++ b/sys/netinet/ip_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ether.c,v 1.15 2001/01/31 05:43:07 jason Exp $ */ +/* $OpenBSD: ip_ether.c,v 1.16 2001/01/31 08:28:47 jason Exp $ */ /* * The author of this code is Angelos D. Keromytis (kermit@adk.gr) @@ -342,6 +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); return ENOBUFS; } M_COPY_PKTHDR(m0, m); -- cgit v1.2.3