mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Fix one more memory leak.
The delete function was not set for one of the dictionaries used by sessions. Found by dnj0496@gmail.com
This commit is contained in:
parent
87da09ddca
commit
eece0ff096
1 changed files with 1 additions and 0 deletions
|
@ -103,6 +103,7 @@ NetSessions::NetSessions()
|
||||||
|
|
||||||
tcp_conns.SetDeleteFunc(bro_obj_delete_func);
|
tcp_conns.SetDeleteFunc(bro_obj_delete_func);
|
||||||
udp_conns.SetDeleteFunc(bro_obj_delete_func);
|
udp_conns.SetDeleteFunc(bro_obj_delete_func);
|
||||||
|
icmp_conns.SetDeleteFunc(bro_obj_delete_func);
|
||||||
fragments.SetDeleteFunc(bro_obj_delete_func);
|
fragments.SetDeleteFunc(bro_obj_delete_func);
|
||||||
|
|
||||||
if ( stp_correlate_pair )
|
if ( stp_correlate_pair )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue