about summary refs log tree commit diff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/dl-load.c')
-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 e24a660035..fa8e15cc0c 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");