There is a memory leak in usrsctp/usrsctplib/user_socket.c in function
usrsctp_conninput
The memory allocated here:
"if ((m = sctp_get_mbuf_for_msg(length, 1, M_NOWAIT, 0, MT_DATA)) == NULL)"
(line 3200 in current rev)
is never released
I think a simple sctp_m_freem before the return would fix it, but I'm not very
familiar with the code
Original issue reported on code.google.com by ndimit...@setelis.com on 6 Jan 2014 at 3:32
Original issue reported on code.google.com by
ndimit...@setelis.com
on 6 Jan 2014 at 3:32