You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a memory leak in function "handle_control_packet_out", it doesn't free the data malloced in the packet out message.
At the end of the function, ofl_msg_free_packet_out(msg, false, dp->exp); has to be modified to ofl_msg_free_packet_out(msg, true, dp->exp);
The text was updated successfully, but these errors were encountered:
There is a memory leak in function "handle_control_packet_out", it doesn't free the data malloced in the packet out message.
At the end of the function,
ofl_msg_free_packet_out(msg, false, dp->exp);
has to be modified toofl_msg_free_packet_out(msg, true, dp->exp);
The text was updated successfully, but these errors were encountered: