diff options
Diffstat (limited to 'elf/dl-reloc.c')
-rw-r--r-- | elf/dl-reloc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index d2122a8bdf..f1c43ea174 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -58,10 +58,7 @@ _dl_relocate_object (struct link_map *l, struct link_map *scope[], int lazy) /* This macro is used as a callback from the ELF_DYNAMIC_RELOCATE code. */ #define RESOLVE(ref, version, flags) \ - ((*ref)->st_shndx != SHN_UNDEF && \ - ELFW(ST_BIND) ((*ref)->st_info) == STB_LOCAL \ - ? l->l_addr : \ - (version) != NULL && (version)->hash != 0 \ + ((version) != NULL && (version)->hash != 0 \ ? _dl_lookup_versioned_symbol (strtab + (*ref)->st_name, (ref), scope, \ l->l_name, (version), (flags)) \ : _dl_lookup_symbol (strtab + (*ref)->st_name, (ref), scope, \ |