Fix a (long standing?) bug in ip_output(): if ip_insertoptions() is

called and ip_output() encounters an error and bails (i.e. host
unreachable), we will leak an mbuf. This is because the code calls
m_freem(m0) after jumping to the bad: label at the end of the function,
when it should be calling m_freem(m). (m0 is the original mbuf list
_without_ the options mbuf prepended.)

Obtained from:	NetBSD
This commit is contained in:
Bill Paul 2001-10-30 18:15:48 +00:00
parent bc183b3fe8
commit 3528d68f71
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85741

View File

@ -982,7 +982,7 @@ ip_output(m0, opt, ro, flags, imo)
#endif /* IPSEC */
return (error);
bad:
m_freem(m0);
m_freem(m);
goto done;
}