Commit 7c85bf2f authored by Luca Boccassi's avatar Luca Boccassi

Problem: uninitialised variables in gssapi_server constructor

Solution: initialise session and peer_address
parent 2ba0149e
......@@ -48,6 +48,8 @@ zmq::gssapi_server_t::gssapi_server_t (session_base_t *session_,
mechanism_base_t (session_, options_),
gssapi_mechanism_base_t (session_, options_),
zap_client_t (session_, peer_address_, options_),
session (session_),
peer_address (peer_address_),
state (recv_next_token),
security_context_established (false)
{
......
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