Stop session's timer when pipe terminates

This commit is contained in:
Martin Hurton 2014-09-12 16:39:11 +02:00
parent be9fecdbc3
commit 50e0915f98

View File

@ -206,10 +206,14 @@ void zmq::session_base_t::pipe_terminated (pipe_t *pipe_)
|| pipe_ == zap_pipe
|| terminating_pipes.count (pipe_) == 1);
if (pipe_ == pipe)
if (pipe_ == pipe) {
// If this is our current pipe, remove it
pipe = NULL;
else
if (has_linger_timer) {
cancel_timer (linger_timer_id);
has_linger_timer = false;
}
} else
if (pipe_ == zap_pipe)
zap_pipe = NULL;
else