diff options
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -83,10 +83,8 @@ _dl_start (void *arg) /* Figure out the run-time load address of the dynamic linker itself. */ bootstrap_map.l_addr = elf_machine_load_address (); - /* Read our own dynamic section and fill in the info array. - Conveniently, the first element of the GOT contains the - offset of _DYNAMIC relative to the run-time load address. */ - bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + *elf_machine_got (); + /* Read our own dynamic section and fill in the info array. */ + bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + elf_machine_dynamic (); elf_get_dynamic_info (bootstrap_map.l_ld, bootstrap_map.l_info); #ifdef ELF_MACHINE_BEFORE_RTLD_RELOC |