Closed timblechmann closed 2 years ago
running address sanitizer on my application gave me memory leaks of reactor_op_ptr from: https://github.com/zeromq/azmq/blob/master/azmq/detail/socket_service.hpp#L482-L490
reactor_op_ptr
where is this memory supposed to be freed? it is a leak inside azmq or is it something that should be handled on the application side?
We saw this also – it looks like per_descriptor_data should free the remaining objects in its op_queue_ on destruction, but doesn't do so.
per_descriptor_data
op_queue_
running address sanitizer on my application gave me memory leaks of
reactor_op_ptr
from: https://github.com/zeromq/azmq/blob/master/azmq/detail/socket_service.hpp#L482-L490where is this memory supposed to be freed? it is a leak inside azmq or is it something that should be handled on the application side?