Commit 9728706b authored by Pieter Hintjens's avatar Pieter Hintjens

Added optval checking in zmq_ctx_set

parent eb8217bb
......@@ -128,13 +128,13 @@ int zmq::ctx_t::terminate ()
int zmq::ctx_t::set (int option_, int optval_)
{
int rc = 0;
if (option_ == ZMQ_MAX_SOCKETS) {
if (option_ == ZMQ_MAX_SOCKETS && optval_ >= 1) {
opt_sync.lock ();
max_sockets = optval_;
opt_sync.unlock ();
}
else
if (option_ == ZMQ_IO_THREADS) {
if (option_ == ZMQ_IO_THREADS && optval_ >= 0) {
opt_sync.lock ();
io_thread_count = optval_;
opt_sync.unlock ();
......
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