]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - nptl/createthread.c
Bug 20116: Fix use after free in pthread_create()
[thirdparty/glibc.git] / nptl / createthread.c
index 345f4256370a57bb4c8b5abad2ee456424357341..6c67b7e74e95e2dcb5ba32e41657949514c3f668 100644 (file)
 
 static int
 create_thread (struct pthread *pd, const struct pthread_attr *attr,
-              bool stopped_start, STACK_VARIABLES_PARMS, bool *thread_ran)
+              bool *stopped_start, STACK_VARIABLES_PARMS, bool *thread_ran)
 {
   /* If the implementation needs to do some tweaks to the thread after
      it has been created at the OS level, it can set STOPPED_START here.  */
 
-  pd->stopped_start = stopped_start;
-  if (__glibc_unlikely (stopped_start))
-    /* We make sure the thread does not run far by forcing it to get a
-       lock.  We lock it here too so that the new thread cannot continue
-       until we tell it to.  */
+  pd->stopped_start = *stopped_start;
+  if (__glibc_unlikely (*stopped_start))
+    /* See CONCURRENCY NOTES in nptl/pthread_create.c.  */
     lll_lock (pd->lock, LLL_PRIVATE);
 
   return ENOSYS;