ded4c0675d
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41570
21 lines
787 B
Diff
21 lines
787 B
Diff
--- a/ldso/ldso/mips/elfinterp.c
|
|
+++ b/ldso/ldso/mips/elfinterp.c
|
|
@@ -239,7 +239,7 @@ int _dl_parse_relocation_information(str
|
|
case R_MIPS_TLS_DTPMOD64:
|
|
case R_MIPS_TLS_DTPMOD32:
|
|
if (tls_tpnt)
|
|
- *(ElfW(Word) *)reloc_addr = tls_tpnt->l_tls_modid;
|
|
+ *(ElfW(Addr) *)reloc_addr = tls_tpnt->l_tls_modid;
|
|
#ifdef __SUPPORT_LD_DEBUG__
|
|
_dl_dprintf(2, "TLS_DTPMOD : %s, %d, %d\n",
|
|
symname, old_val, *((unsigned int *)reloc_addr));
|
|
@@ -248,7 +248,7 @@ int _dl_parse_relocation_information(str
|
|
|
|
case R_MIPS_TLS_DTPREL64:
|
|
case R_MIPS_TLS_DTPREL32:
|
|
- *(ElfW(Word) *)reloc_addr +=
|
|
+ *(ElfW(Addr) *)reloc_addr +=
|
|
TLS_DTPREL_VALUE (symbol_addr);
|
|
#ifdef __SUPPORT_LD_DEBUG__
|
|
_dl_dprintf(2, "TLS_DTPREL : %s, %x, %x\n",
|