diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-21 22:36:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-21 22:36:32 +0000 |
commit | 3fc9ed37d877ad93df8d3a914f09c934f53feaf0 (patch) | |
tree | e38cd3296e920e252bc585c3d2b87483e985f2fc | |
parent | 8aeeb60024eb4962efd4cbe6585e7d85936dc949 (diff) | |
download | glibc-3fc9ed37d877ad93df8d3a914f09c934f53feaf0.tar.gz glibc-3fc9ed37d877ad93df8d3a914f09c934f53feaf0.tar.xz glibc-3fc9ed37d877ad93df8d3a914f09c934f53feaf0.zip |
(_dl_map_object_deps): Revert patch from 2002-05-28. This cripples the scope lists necessary to search for symbols in dependencies which are not in the global scope.
-rw-r--r-- | elf/dl-deps.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/elf/dl-deps.c b/elf/dl-deps.c index 7842013c92..9fd2dd23ef 100644 --- a/elf/dl-deps.c +++ b/elf/dl-deps.c @@ -254,10 +254,6 @@ _dl_map_object_deps (struct link_map *map, else dep = args.aux; - /* Skip those are not dlopened if we are dlopened. */ - if (map->l_type == lt_loaded && dep->l_type != lt_loaded) - continue; - if (! dep->l_reserved) { /* Allocate new entry. */ |