summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2002-03-24 19:26:15 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2002-03-24 19:26:15 +0000
commit736fdc31fbec3d6c7a49b546f4033cd9a41dff69 (patch)
tree0e5dbcabcd2174f6560a9d5a7b940c3425fa0667 /sys
parent56204f82efe22442ad7b435c52625678f89e1466 (diff)
m_freem(NULL) bad style, ok jason@
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_ether.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c
index 11fd4a84637..33d95c16bf5 100644
--- a/sys/netinet/ip_ether.c
+++ b/sys/netinet/ip_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ether.c,v 1.37 2002/03/15 18:19:52 millert Exp $ */
+/* $OpenBSD: ip_ether.c,v 1.38 2002/03/24 19:26:14 niklas Exp $ */
/*
* The author of this code is Angelos D. Keromytis (kermit@adk.gr)
*
@@ -155,7 +155,6 @@ etherip_input(struct mbuf *m, ...)
sizeof(struct etherip_header))) == NULL) {
DPRINTF(("etherip_input(): m_pullup() failed\n"));
etheripstat.etherip_adrops++;
- m_freem(m);
return;
}
}