diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-04-07 11:54:09 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-04-07 11:54:09 +0200 |
commit | 745db9c574153160214470563bea3b53ab4c292a (patch) | |
tree | e7084d805c3d027abaf1e60d5b00c6f0bd33dbdc | |
parent | 065e4d00ff628097ce693ac7d9056fbcaf23d0bc (diff) |
unitialised member in seesion_t class - fixed
-rw-r--r-- | src/session.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/session.cpp b/src/session.cpp index 4266dbd..792d763 100644 --- a/src/session.cpp +++ b/src/session.cpp @@ -44,6 +44,7 @@ zmq::session_t::session_t (object_t *parent_, socket_base_t *owner_, const options_t &options_, const blob_t &peer_identity_) : owned_t (parent_, owner_), in_pipe (NULL), + incomplete_in (false), active (true), out_pipe (NULL), engine (NULL), |