Unverified Commit 89ac4a0f authored by Simon Giesecke's avatar Simon Giesecke Committed by GitHub

Merge pull request #3566 from TomMD/fix/leaks

Free memory when curve_client sends invalid ready message.
parents b99bf4e1 90ff30c0
......@@ -240,6 +240,7 @@ int zmq::curve_client_t::process_ready (const uint8_t *msg_data_,
session->get_socket ()->event_handshake_failed_protocol (
session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC);
errno = EPROTO;
free (ready_plaintext);
return -1;
}
......
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