Commit 4b70793f authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1179 from hurtonm/master

Stop session's timer when pipe terminates
parents be9fecdb 50e0915f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment