diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-09-15 16:44:57 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-09-15 16:44:57 +0200 |
commit | e2802d9a4b7e518c549e8dd95a34d2424058f086 (patch) | |
tree | 5f7041b436d0c94c9eb0b32332bd93a54bb4422a | |
parent | 01c463cc89626bf9d69500ab1f4957705663788e (diff) |
values of RATE, RECOVERY_IVL and SWAP options are checked for negative values
-rw-r--r-- | src/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/options.cpp b/src/options.cpp index f6b24d6..dcbb51d 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -53,7 +53,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_, return 0; case ZMQ_SWAP: - if (optvallen_ != sizeof (int64_t)) { + if (optvallen_ != sizeof (int64_t) || *((int64_t*) optval_) < 0) { errno = EINVAL; return -1; } @@ -82,7 +82,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_, return 0; case ZMQ_RATE: - if (optvallen_ != sizeof (int64_t)) { + if (optvallen_ != sizeof (int64_t) || *((int64_t*) optval_) < 0) { errno = EINVAL; return -1; } @@ -90,7 +90,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_, return 0; case ZMQ_RECOVERY_IVL: - if (optvallen_ != sizeof (int64_t)) { + if (optvallen_ != sizeof (int64_t) || *((int64_t*) optval_) < 0) { errno = EINVAL; return -1; } |