fix crash in pthread_testcancel if pthread_self has not been called
authorRich Felker <dalias@aerifal.cx>
Tue, 27 Sep 2011 22:39:49 +0000 (18:39 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 27 Sep 2011 22:39:49 +0000 (18:39 -0400)
src/thread/cancel_impl.c

index 01f52b8..cf5082d 100644 (file)
@@ -61,7 +61,7 @@ static void cancel_handler(int sig, siginfo_t *si, void *ctx)
 
 void __testcancel()
 {
-       pthread_t self = __pthread_self();
+       pthread_t self = pthread_self();
        if (self->cancel && !self->canceldisable)
                __cancel();
 }