Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-08-10 19:05:37 +0400
committerChristopher Faylor <me@cgf.cx>2004-08-10 19:05:37 +0400
commitfe3db6cc89fa082c9eb7e5ccf977a57871509b89 (patch)
tree2d871e682f02b3d05989c260459bb295f3441fc8 /winsup/cygwin/select.cc
parentf97a9313ea979684f093010e94267211323e70bc (diff)
* select.cc (select_stuff::wait): Correctly check for w4 array bounds.
Diffstat (limited to 'winsup/cygwin/select.cc')
-rw-r--r--winsup/cygwin/select.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc
index eba122e66..b24446928 100644
--- a/winsup/cygwin/select.cc
+++ b/winsup/cygwin/select.cc
@@ -233,7 +233,7 @@ select_stuff::wait (fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
counting the number of active fds. */
while ((s = s->next))
{
- if (m > MAXIMUM_WAIT_OBJECTS)
+ if (m >= MAXIMUM_WAIT_OBJECTS)
{
set_sig_errno (EINVAL);
return -1;