0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

Merge pull request #3973 from bluca/fuzzers

Problem: test_security_zap occasionally segfaults
This commit is contained in:
Luca Boccassi 2020-06-30 16:02:04 +01:00 committed by GitHub
commit 4dd504abeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}