Fix harmless bug: sizeof(tcb) equals sizeof(void*) not sizeof(struct tcb).

The argument is (currently) not used by _rtld_free_tls().
This commit is contained in:
Marcel Moolenaar 2006-08-31 19:06:30 +00:00
parent 9555b0e2fc
commit 91705de0c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161779

View File

@ -54,5 +54,5 @@ _tcb_ctor(struct pthread *thread, int initial)
void
_tcb_dtor(struct tcb *tcb)
{
_rtld_free_tls(tcb, sizeof(tcb), 16);
_rtld_free_tls(tcb, sizeof(struct tcb), 16);
}