Skip to content

Commit

Permalink
Merge pull request #3973 from bluca/fuzzers
Browse files Browse the repository at this point in the history
Problem: test_security_zap occasionally segfaults
  • Loading branch information
bluca committed Jun 30, 2020
2 parents 1cfd41c + 350b4b3 commit 4dd504a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/session_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ void zmq::session_base_t::read_activated (pipe_t *pipe_)
}

if (unlikely (_engine == NULL)) {
_pipe->check_read ();
if (_pipe)
_pipe->check_read ();
return;
}

Expand Down

0 comments on commit 4dd504a

Please sign in to comment.