mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 16:21:06 +00:00
Update.
(elf_machine_got_rel): Cast sym correctly.
This commit is contained in:
parent
30c2f3c4e2
commit
c84956c7a2
@ -9,6 +9,7 @@
|
||||
|
||||
* sysdeps/mips/dl-machine.h (elf_machine_got_rel): Initialize
|
||||
symidx correctly.
|
||||
(elf_machine_got_rel): Cast sym correctly.
|
||||
|
||||
* sysdeps/mips/add_n.S: Use __PIC__, add end directive.
|
||||
* sysdeps/mips/addmul_1.S: Likewise.
|
||||
|
@ -541,7 +541,7 @@ elf_machine_got_rel (struct link_map *map, int lazy)
|
||||
got += n;
|
||||
/* Keep track of the symbol index. */
|
||||
symidx = map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val;
|
||||
sym = (void *) D_PTR (map, l_info[DT_SYMTAB]) + symidx;
|
||||
sym = (ElfW(Sym) *) D_PTR (map, l_info[DT_SYMTAB]) + symidx;
|
||||
i = (map->l_info[DT_MIPS (SYMTABNO)]->d_un.d_val
|
||||
- map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user