* sysdeps/i386/dl-machine.h (elf_machine_rel): Add to, don't clobber,
authorRoland McGrath <roland@gnu.org>
Wed, 7 Aug 2002 22:14:40 +0000 (22:14 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 7 Aug 2002 22:14:40 +0000 (22:14 +0000)
unrelocated initial value for DTPOFF32 and TPOFF32 relocs.
Reported by Jakub Jelinek  <jakub@redhat.com>.

ChangeLog
sysdeps/i386/dl-machine.h

index cf5e339..3342341 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-08-07  Roland McGrath  <roland@redhat.com>
+
+       * sysdeps/i386/dl-machine.h (elf_machine_rel): Add to, don't clobber,
+       unrelocated initial value for DTPOFF32 and TPOFF32 relocs.
+       Reported by Jakub Jelinek  <jakub@redhat.com>.
+
 2002-08-07  Jakub Jelinek  <jakub@redhat.com>
 
         * malloc/malloc.c (public_cALLOc): Check ELEM_SIZE != 0 before
index f8b2a3c..8092e88 100644 (file)
@@ -393,20 +393,20 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
          /* During relocation all TLS symbols are defined and used.
             Therefore the offset is already correct.  */
          if (sym != NULL)
-           *reloc_addr = sym->st_value;
+           *reloc_addr += sym->st_value;
 # endif
          break;
        case R_386_TLS_TPOFF32:
          /* The offset is positive, backward from the thread pointer.  */
 # ifdef RTLD_BOOTSTRAP
-         *reloc_addr = map->l_tls_offset - sym->st_value;
+         *reloc_addr += map->l_tls_offset - sym->st_value;
 # else
          /* We know the offset of object the symbol is contained in.
             It is a positive value which will be subtracted from the
             thread pointer.  To get the variable position in the TLS
             block we subtract the offset from that of the TLS block.  */
          if (sym_map != NULL && sym != NULL)
-           *reloc_addr = sym_map->l_tls_offset - sym->st_value;
+           *reloc_addr += sym_map->l_tls_offset - sym->st_value;
 # endif
          break;
 #endif /* use TLS */