aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-15 13:11:11 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-15 13:11:11 +0000
commit983b29ede844ad5c26eb9825817eb8c123c5075a (patch)
treea8fbb972c3470190af18f3d34fa908774f8742d0 /elf
parentd1987d2d19cff48a896dce678792c3bc2aa90968 (diff)
downloadglibc-983b29ede844ad5c26eb9825817eb8c123c5075a.zip
glibc-983b29ede844ad5c26eb9825817eb8c123c5075a.tar.gz
glibc-983b29ede844ad5c26eb9825817eb8c123c5075a.tar.bz2
Update.
1999-03-15 Ulrich Drepper <drepper@cygnus.com> * elf/dl-load.c: Compute rtld_search_dir array size correctly. Reported by Yasushi Saito <yasushi@cs.washington.edu>.
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-load.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index e24a660..fa8e15c 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -481,7 +481,8 @@ _dl_init_paths (const char *llp)
/* First set up the rest of the default search directory entries. */
aelem = rtld_search_dirs = (struct r_search_path_elem **)
- malloc ((ncapstr + 1) * sizeof (struct r_search_path_elem *));
+ malloc (((sizeof (system_dirs) / sizeof (system_dirs[0]) + 1)
+ * sizeof (struct r_search_path_elem *));
if (rtld_search_dirs == NULL)
_dl_signal_error (ENOMEM, NULL, "cannot create search path array");