diff options
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r-- | elf/dl-runtime.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 0beba769fa..dce34f8a89 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -70,8 +70,9 @@ fixup ( Elf32_Addr resolve (const Elf32_Sym **ref, Elf32_Addr reloc_addr, int noplt) { - return _dl_lookup_symbol (strtab + (*ref)->st_name, ref, _dl_loaded, - l->l_name, reloc_addr, noplt); + struct link_map *scope[2] = { _dl_loaded, NULL }; + return _dl_lookup_symbol (strtab + (*ref)->st_name, ref, + scope, l->l_name, reloc_addr, noplt); } /* Perform the specified relocation. */ |