diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2018-04-09 02:23:07 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2018-04-17 18:15:58 +0100 |
commit | aaf1b2f5652e2f658383d432dd1b65a6a719f849 (patch) | |
tree | f12c3404659d7adc37016ab7a323bb508fa20173 /ldso/libdl/libdl.c | |
parent | 343fb004d9af1e68416da7c3d836715f684792b0 (diff) |
Revert "libdl: fix dlclose() issue"
This reverts commit bf4c2d242f587700e3eb2ffd5721ddaf3cdbc7e5.
Diffstat (limited to 'ldso/libdl/libdl.c')
-rw-r--r-- | ldso/libdl/libdl.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index 8f036b991..d102a48ab 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -792,7 +792,7 @@ static int do_dlclose(void *vhandle, int need_fini) struct dyn_elf *handle; ElfW(Addr) end = 0, start = (ElfW(Addr))(~0ULL); unsigned int i, j; - struct r_scope_elem *ls, *ls_next = NULL, *run_scope; + struct r_scope_elem *ls, *ls_next = NULL; struct elf_resolve **handle_rlist; #if defined(USE_TLS) && USE_TLS @@ -999,18 +999,6 @@ static int do_dlclose(void *vhandle, int need_fini) break; } } - for (run_scope = &_dl_loaded_modules->symbol_scope; run_scope; run_scope = run_scope->next) { - for (i = 0; i < run_scope->r_nlist; ++i) { - if (run_scope->r_list[i] == tpnt) { - _dl_if_debug_print("removed from symbol_scope: %s\n", tpnt->libname); - for (j = i; j < run_scope->r_nlist - 1; ++j) { - run_scope->r_list[j] = run_scope->r_list[j + 1]; - } - --run_scope->r_nlist; - break; - } - } - } } /* Next, remove tpnt from the global symbol table list */ |