Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Nov 23, 2004
1 parent 405521b commit 42586dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/generic/dl-tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 42586dc

Please sign in to comment.