summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_fork.c
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2002-03-19 22:58:56 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2002-03-19 22:58:56 +0000
commit3003bdb5983ac249a54696112d841e1d6ed28d00 (patch)
tree64a520af93e4e04f24e730bf2a51ce6ccb8ad724 /lib/libpthread/thread/thr_fork.c
parent63e99e978a98a91ba69f78077c8d158fbc0d55c7 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_fork.c')
-rw-r--r--lib/libpthread/thread/thr_fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/thread/thr_fork.c b/lib/libpthread/thread/thr_fork.c
index 9d9a647f0659..dd6d3ffead7a 100644
--- a/lib/libpthread/thread/thr_fork.c
+++ b/lib/libpthread/thread/thr_fork.c
@@ -233,8 +233,8 @@ free_thread_resources(struct pthread *thread)
thread->attr.guardsize_attr);
}
- if (thread->specific_data != NULL)
- free(thread->specific_data);
+ if (thread->specific != NULL)
+ free(thread->specific);
if (thread->poll_data.fds != NULL)
free(thread->poll_data.fds);