diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-01-31 08:28:48 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-01-31 08:28:48 +0000 |
commit | 50ae53e28a2fe2f2b5a9fd05f3ac852bb276d6de (patch) | |
tree | bb1accc1c2575bd47253d2b8ff36cf7bc2054a68 /sys/netinet/ip_ether.c | |
parent | 2163f06d01c73acf24df815e03f30fb9757622c9 (diff) |
oops, avoid mbuf lossage if MGETHDR fails
Diffstat (limited to 'sys/netinet/ip_ether.c')
-rw-r--r-- | sys/netinet/ip_ether.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |