mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 02:40:08 +00:00
Update.
This commit is contained in:
parent
d8427e20ba
commit
1b80b4f1c9
@ -1,3 +1,8 @@
|
||||
2002-09-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* td_thr_tsd.c (td_thr_tsd): Read correct entry from pthread_keys
|
||||
array.
|
||||
|
||||
2002-09-28 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* td_thr_tls_get_addr.c (td_thr_tls_get_addr): Fix reference to dtv.
|
||||
|
@ -51,7 +51,7 @@ td_thr_tsd (const td_thrhandle_t *th, const thread_key_t tk, void **data)
|
||||
return TD_BADKEY;
|
||||
|
||||
/* Get the key entry. */
|
||||
if (ps_pdread (th->th_ta_p->ph, keys, &key,
|
||||
if (ps_pdread (th->th_ta_p->ph, &keys[tk], &key,
|
||||
sizeof (struct pthread_key_struct)) != PS_OK)
|
||||
return TD_ERR; /* XXX Other error value? */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user