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:
parent
9555b0e2fc
commit
91705de0c2
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user