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
The zmq_msg_init() at the beginning created a new message overwriting
the handle of the old message. But this old message was not closed
leaving a memory leak behind. Instead of closing the existing handle
explicitly we can simply remove the init call because zmq_msg_move()
does the closing of the old message on its own.
see zeromq#204
0 commit comments