Re: if() before m_free(9)

2017-01-09 Thread Mark Kettenis
> Date: Mon, 9 Jan 2017 20:12:32 +0100 > From: Martin Pieuchot > > m_free(9) handles NULL, no need to check for it beforehand. > > Seems that we missed these because of the (void) cast! > > ok? ok kettenis@ > Index: netinet/ip_output.c >

Re: if() before m_free(9)

2017-01-09 Thread Alexander Bluhm
On Mon, Jan 09, 2017 at 08:12:32PM +0100, Martin Pieuchot wrote: > m_free(9) handles NULL, no need to check for it beforehand. > > Seems that we missed these because of the (void) cast! > > ok? OK bluhm@ > > Index: netinet/ip_output.c >

if() before m_free(9)

2017-01-09 Thread Martin Pieuchot
m_free(9) handles NULL, no need to check for it beforehand. Seems that we missed these because of the (void) cast! ok? Index: netinet/ip_output.c === RCS file: /cvs/src/sys/netinet/ip_output.c,v retrieving revision 1.333 diff -u -p