aboutsummaryrefslogtreecommitdiff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index dac06c0617..89eb6eccc9 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -754,12 +754,11 @@ lose (int code, int fd, const char *name, char *realname, struct link_map *l,
{
/* Remove the stillborn object from the list and free it. */
assert (l->l_next == NULL);
-#ifndef SHARED
if (l->l_prev == NULL)
- /* No other module loaded. */
+ /* No other module loaded. This happens only in the static library,
+ or in rtld under --verify. */
GL(dl_loaded) = NULL;
else
-#endif
l->l_prev->l_next = NULL;
--GL(dl_nloaded);
free (l);