Commit df6876ab authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1805 from bluca/uninitialised_sockopt

Problem: curve keys getsockopt uninitialised read
parents 93f99d09 f8679535
......@@ -78,6 +78,9 @@ zmq::options_t::options_t () :
heartbeat_timeout (-1),
use_fd (-1)
{
memset (curve_public_key, 0, CURVE_KEYSIZE);
memset (curve_secret_key, 0, CURVE_KEYSIZE);
memset (curve_server_key, 0, CURVE_KEYSIZE);
#if defined ZMQ_HAVE_VMCI
vmci_buffer_size = 0;
vmci_buffer_min_size = 0;
......
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