mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 02:42:58 +01:00
Merge pull request #299 from pieterh/master
Added checking to zmq_ctx_set()
This commit is contained in:
commit
476c9b97c9
@ -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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user