Commit 89962a82 authored by Martin Sustrik's avatar Martin Sustrik

Uninitialised FSM state in REQ session fixed (issue 278)

Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent 11e31988
......@@ -141,7 +141,8 @@ zmq::req_session_t::req_session_t (io_thread_t *io_thread_, bool connect_,
socket_base_t *socket_, const options_t &options_,
const char *protocol_, const char *address_) :
xreq_session_t (io_thread_, connect_, socket_, options_, protocol_,
address_)
address_),
state (identity)
{
}
......
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