about summary refs log tree commit diff
path: root/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-06-01 04:09:55 +0000
committerUlrich Drepper <drepper@redhat.com>2003-06-01 04:09:55 +0000
commit31195be25b5cd8e88426ab2496eaeb4d508b0764 (patch)
tree22bb5835c3288f2530c8699a78855b050e1c47f7 /nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
parent06e2e0a747504a9cce34fa851e7afac2dc8efe42 (diff)
downloadglibc-31195be25b5cd8e88426ab2496eaeb4d508b0764.tar.gz
glibc-31195be25b5cd8e88426ab2496eaeb4d508b0764.tar.xz
glibc-31195be25b5cd8e88426ab2496eaeb4d508b0764.zip
Update.
2003-05-31  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/ia64/bits/sigaction.h (SA_NOCLDWAIT): Define.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/sem_timedwait.c')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/sem_timedwait.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c b/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
index 632cce4391..8a65ce2567 100644
--- a/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
+++ b/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
@@ -42,7 +42,7 @@ sem_timedwait (sem_t *sem, const struct timespec *abstime)
     }
 
   err = -EINVAL;
-  if (abstime->tv_nsec >= 1000000000)
+  if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)
     goto error_return;
 
   do