summaryrefslogtreecommitdiff
path: root/src/zmq.cpp
diff options
context:
space:
mode:
authorMartin Lucina <mato@kotelna.sk>2010-09-04 16:24:21 +0200
committerMartin Lucina <mato@kotelna.sk>2010-09-04 16:24:21 +0200
commitca176121deb8dbdc62d8a37fec377c07fc786480 (patch)
tree6b53af092e5de652a6ba92ba771333901930fa62 /src/zmq.cpp
parent2673a84e07b93b8607958516c55341c2eb220a6e (diff)
parent51a84c15ded2d70985c9d971ebdf3f3c9c18d590 (diff)
Merge branch 'maint'
* maint: zmq::select_t, zmq_poll(): assert if FD_SETSIZE reached zmq.h: Fix typo and use of C99 comment Conflicts: src/zmq.cpp
Diffstat (limited to 'src/zmq.cpp')
-rw-r--r--src/zmq.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zmq.cpp b/src/zmq.cpp
index 6cf230c..736f764 100644
--- a/src/zmq.cpp
+++ b/src/zmq.cpp
@@ -491,6 +491,10 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
zmq::fd_t maxfd = 0;
+ // Ensure we do not attempt to select () on more than FD_SETSIZE
+ // file descriptors.
+ zmq_assert (nitems_ <= FD_SETSIZE);
+
// Build the fd_sets for passing to select ().
for (int i = 0; i != nitems_; i++) {