diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-15 07:06:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-15 07:06:23 +0000 |
commit | 07a3d63e524f13dd09e14adb0ac2623f6600401d (patch) | |
tree | 7a19ce309262c7d2d7fa26ad15df1aeaa969b9f4 /elf/dl-deps.c | |
parent | b8fd550293431d4df42b281fc868ef0ab80e822b (diff) | |
download | glibc-07a3d63e524f13dd09e14adb0ac2623f6600401d.tar.gz |
Update.
2000-08-15 Ulrich Drepper <drepper@redhat.com>
* elf/multiload.c: Add mtrace call. Call dlclose for all handles and
free wd.
* elf/dl-deps.c (_dl_map_object_deps): Don't allocate needed list if
there is already one.
* elf/dl-close.c: Pretty print.
Diffstat (limited to 'elf/dl-deps.c')
-rw-r--r-- | elf/dl-deps.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-deps.c b/elf/dl-deps.c index 5bc048edb9..4fc2943c14 100644 --- a/elf/dl-deps.c +++ b/elf/dl-deps.c @@ -201,7 +201,8 @@ _dl_map_object_deps (struct link_map *map, /* Allocate a temporary record to contain the references to the dependencies of this object. */ - if (l->l_searchlist.r_list == NULL && l != map && l->l_ldnum > 0) + if (l->l_searchlist.r_list == NULL && l->l_initfini == NULL + && l != map && l->l_ldnum > 0) needed = (struct link_map **) alloca (l->l_ldnum * sizeof (struct link_map *)); |