diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 1999-08-19 23:06:11 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 1999-08-19 23:06:11 +0000 |
| commit | 91518882e0644ea4047cdeffbed637e857906caa (patch) | |
| tree | b10bd9f64c914d3351cce2d7847b7bc1f73b2c5a /lib/libpthread/thread/thr_select.c | |
| parent | d3c6699913165313c0a4b2a03e7e068ede6c7384 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_select.c')
| -rw-r--r-- | lib/libpthread/thread/thr_select.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_select.c b/lib/libpthread/thread/thr_select.c index 67de75d33f47..2042fde4ac56 100644 --- a/lib/libpthread/thread/thr_select.c +++ b/lib/libpthread/thread/thr_select.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: uthread_select.c,v 1.8 1999/06/23 15:01:22 dt Exp $ + * $Id: uthread_select.c,v 1.9 1999/08/05 12:15:21 deischen Exp $ */ #include <unistd.h> #include <errno.h> @@ -53,6 +53,10 @@ select(int numfds, fd_set * readfds, fd_set * writefds, int pfd_index, got_one = 0, fd_count = 0; struct pthread_poll_data data; + if (timeout->tv_sec < 0 || + timeout->tv_usec < 0 || timeout->tv_usec >= 1000000) + return (EINVAL); + if (numfds > _thread_dtablesize) { numfds = _thread_dtablesize; } |
