diff options
Diffstat (limited to 'elf/dlsym.c')
-rw-r--r-- | elf/dlsym.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dlsym.c b/elf/dlsym.c index cc50650fc9..804d404bb3 100644 --- a/elf/dlsym.c +++ b/elf/dlsym.c @@ -33,7 +33,8 @@ dlsym (void *handle, const char *name) int lose; void doit (void) { - loadbase = _dl_lookup_symbol (name, &ref, map, map->l_name, 0); + struct link_map *scope[2] = { map, NULL }; + loadbase = _dl_lookup_symbol (name, &ref, scope, map->l_name, 0, 0); } /* Confine the symbol scope to just this map. */ |