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