CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/07/19 00:59:16
Modified files:
sys/net : if_pppoe.c
Log message:
Fix double free in pppoe_dispatch_disc_pkt(). If m_pulldown() fails m is
freed but another m_freem call happens later. Set m to NULL if m_pulldown()
fails like in all other cases of this function.
Found by Ilja Van Sprundel
OK bluhm@
