Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 9 Mar 1998 00:01:13 +0000 (00:01 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 9 Mar 1998 00:01:13 +0000 (00:01 +0000)
* elf/dl-support.c (non_dynamic_init): Pass return value of getenv
("LD_LIBRARY_PATH") to _dl_init_paths.

ChangeLog
elf/dl-support.c

index 9ee2357..41c5dd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@
        calling getenv.
        * elf/dl-load.c (_dl_init_paths): Don't call getenv to get
        LD_LIBRARY_PATH value, this comes with the parameter.
+       * elf/dl-support.c (non_dynamic_init): Pass return value of getenv
+       ("LD_LIBRARY_PATH") to _dl_init_paths.
 
 1998-03-08 22:55  Ulrich Drepper  <drepper@cygnus.com>
 
index 9d28d2b..29a16d2 100644 (file)
@@ -59,7 +59,7 @@ non_dynamic_init (void)
 
   /* Initialize the data structures for the search paths for shared
      objects.  */
-  _dl_init_paths (NULL);
+  _dl_init_paths (getenv ("LD_LIBRARY_PATH"));
 
 #ifdef DL_PLATFORM_INIT
   DL_PLATFORM_INIT;