mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-12 14:21:18 +08:00
Update.
2004-11-23 Alexandre Oliva <aoliva@redhat.com> * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Use free range even if it doesn't match exactly.
This commit is contained in:
parent
405521b51d
commit
42586dce03
@ -1,3 +1,8 @@
|
||||
2004-11-23 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Use free
|
||||
range even if it doesn't match exactly.
|
||||
|
||||
2004-11-23 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* nss/nss_files/files-XXX.c (internal_getent): If parse_line returned
|
||||
|
@ -217,7 +217,7 @@ _dl_determine_tlsoffset (void)
|
||||
size_t off;
|
||||
max_align = MAX (max_align, slotinfo[cnt].map->l_tls_align);
|
||||
|
||||
if (slotinfo[cnt].map->l_tls_blocksize >= freetop - freebottom)
|
||||
if (slotinfo[cnt].map->l_tls_blocksize <= freetop - freebottom)
|
||||
{
|
||||
off = roundup (freebottom, slotinfo[cnt].map->l_tls_align);
|
||||
if (off - freebottom < firstbyte)
|
||||
|
Loading…
x
Reference in New Issue
Block a user