Fix mbuf leak in rip_ctloutput().

This commit is contained in:
mycroft 1995-01-12 06:23:45 +00:00
parent 6354211739
commit 4d0a512f67
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: raw_ip.c,v 1.14 1994/06/29 06:38:31 cgd Exp $ */
/* $NetBSD: raw_ip.c,v 1.15 1995/01/12 06:23:45 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988, 1993
@ -182,8 +182,11 @@ rip_ctloutput(op, so, level, optname, m)
register struct inpcb *inp = sotoinpcb(so);
register int error;
if (level != IPPROTO_IP)
if (level != IPPROTO_IP) {
if (m != 0 && *m != 0)
(void)m_free(*m);
return (EINVAL);
}
switch (optname) {