about summary refs log tree commit diff
path: root/nptl/pthread_clockjoin.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-08-15 11:06:35 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-08-17 05:02:06 -0700
commitcb7e7a5ca1d6d25d59bc038bdc09630e507c41e5 (patch)
tree9469d86a481126df10823303d8a386d1077d238e /nptl/pthread_clockjoin.c
parent23a7896d065a99057c06a1bd22c2bbee175b0ae4 (diff)
downloadglibc-cb7e7a5ca1d6d25d59bc038bdc09630e507c41e5.tar.gz
glibc-cb7e7a5ca1d6d25d59bc038bdc09630e507c41e5.tar.xz
glibc-cb7e7a5ca1d6d25d59bc038bdc09630e507c41e5.zip
nptl: Handle NULL abstime [BZ #26394]
Since abstime passed to pthread_{clock|timed}join_np may be NULL, convert
to 64 bit abstime only if abstime isn't NULL.
Diffstat (limited to 'nptl/pthread_clockjoin.c')
-rw-r--r--nptl/pthread_clockjoin.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/nptl/pthread_clockjoin.c b/nptl/pthread_clockjoin.c
index 3cd780f688..0baba1e83d 100644
--- a/nptl/pthread_clockjoin.c
+++ b/nptl/pthread_clockjoin.c
@@ -34,9 +34,15 @@ int
 __pthread_clockjoin_np (pthread_t threadid, void **thread_return,
                         clockid_t clockid, const struct timespec *abstime)
 {
-  struct __timespec64 ts64 = valid_timespec_to_timespec64 (*abstime);
-
-  return __pthread_clockjoin_np64 (threadid, thread_return, clockid, &ts64);
+  if (abstime != NULL)
+    {
+      struct __timespec64 ts64 = valid_timespec_to_timespec64 (*abstime);
+      return __pthread_clockjoin_np64 (threadid, thread_return, clockid,
+				       &ts64);
+    }
+  else
+      return __pthread_clockjoin_np64 (threadid, thread_return, clockid,
+				       NULL);
 }
 #endif
 weak_alias (__pthread_clockjoin_np, pthread_clockjoin_np)