diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2002-03-19 22:58:56 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2002-03-19 22:58:56 +0000 |
| commit | 3003bdb5983ac249a54696112d841e1d6ed28d00 (patch) | |
| tree | 64a520af93e4e04f24e730bf2a51ce6ccb8ad724 /lib/libpthread/thread/thr_exit.c | |
| parent | 63e99e978a98a91ba69f78077c8d158fbc0d55c7 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_exit.c')
| -rw-r--r-- | lib/libpthread/thread/thr_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_exit.c b/lib/libpthread/thread/thr_exit.c index d916f5c3e232..c9513cfac15a 100644 --- a/lib/libpthread/thread/thr_exit.c +++ b/lib/libpthread/thread/thr_exit.c @@ -158,7 +158,7 @@ _pthread_exit(void *status) curthread->attr.cleanup_attr(curthread->attr.arg_attr); } /* Check if there is thread specific data: */ - if (curthread->specific_data != NULL) { + if (curthread->specific != NULL) { /* Run the thread-specific data destructors: */ _thread_cleanupspecific(); } |
