Pārlūkot izejas kodu

simplify pthread_key_delete

calling this function on an uninitialized key value is UB, so there is
no need to check that the table pointer was initialized.
Rich Felker 14 gadi atpakaļ
vecāks
revīzija
c1b39b203d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/thread/pthread_key_delete.c

+ 1 - 1
src/thread/pthread_key_delete.c

@@ -2,6 +2,6 @@
 
 int pthread_key_delete(pthread_key_t k)
 {
-	if (libc.tsd_keys) libc.tsd_keys[k] = 0;
+	libc.tsd_keys[k] = 0;
 	return 0;
 }