Skip to content

Commit

Permalink
Uninitialised FSM state in REQ session fixed (issue 278)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
  • Loading branch information
sustrik committed Nov 8, 2011
1 parent 11e3198 commit 89962a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/req.cpp
Expand Up @@ -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_, socket_base_t *socket_, const options_t &options_,
const char *protocol_, const char *address_) : const char *protocol_, const char *address_) :
xreq_session_t (io_thread_, connect_, socket_, options_, protocol_, xreq_session_t (io_thread_, connect_, socket_, options_, protocol_,
address_) address_),
state (identity)
{ {
} }


Expand Down

0 comments on commit 89962a8

Please sign in to comment.