aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-deps.c4
-rw-r--r--elf/dl-sym.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/elf/dl-deps.c b/elf/dl-deps.c
index d59f53658d..fca210f72a 100644
--- a/elf/dl-deps.c
+++ b/elf/dl-deps.c
@@ -465,7 +465,7 @@ _dl_map_object_deps (struct link_map *map,
/* Store the search list we built in the object. It will be used for
searches in the scope of this object. */
- map->l_searchlist.r_list = malloc ((2 * nlist
+ map->l_searchlist.r_list = malloc ((2 * nlist + 1
+ (nlist == nduplist ? 0 : nduplist))
* sizeof (struct link_map *));
if (map->l_searchlist.r_list == NULL)
@@ -549,4 +549,6 @@ _dl_map_object_deps (struct link_map *map,
}
}
}
+ /* Terminate the list of dependencies. */
+ map->l_initfini[nlist] = NULL;
}
diff --git a/elf/dl-sym.c b/elf/dl-sym.c
index 84236ff993..8ab6f2c64e 100644
--- a/elf/dl-sym.c
+++ b/elf/dl-sym.c
@@ -74,7 +74,7 @@ RTLD_NEXT used in code not dynamically loaded"));
}
}
- if (result)
+ if (ref)
return DL_SYMBOL_ADDRESS (result, ref);
return NULL;
@@ -130,7 +130,7 @@ RTLD_NEXT used in code not dynamically loaded"));
map->l_local_scope, &vers, 0);
}
- if (result)
+ if (ref)
return DL_SYMBOL_ADDRESS (result, ref);
return NULL;
}