Closed selvamKrish closed 1 year ago
Memory allocated for send_buffer https://github.com/ASPLes/nopoll/blob/master/src/nopoll_conn.c#L4428 is not getting freed in error case https://github.com/ASPLes/nopoll/blob/master/src/nopoll_conn.c#L4496.
Memory pointed by report is stack allocated (not in the heap). It cannot freed, so nothing has to be done in error case. Best Regards
Memory allocated for send_buffer https://github.com/ASPLes/nopoll/blob/master/src/nopoll_conn.c#L4428 is not getting freed in error case https://github.com/ASPLes/nopoll/blob/master/src/nopoll_conn.c#L4496.