]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 27 May 2000 05:32:14 +0000 (05:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 27 May 2000 05:32:14 +0000 (05:32 +0000)
* elf/dl-load.c (_dl_map_object): Don't ignore RPATHs of loader ==
NULL.

ChangeLog
elf/dl-load.c

index 906df1204c30fa69c1ae5eea2dfe9ea7f35460e3..17f6b6cb70d82b59c140a6bf15732672ffba92a7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-05-26  Ulrich Drepper  <drepper@redhat.com>
 
+       * elf/dl-load.c (_dl_map_object): Don't ignore RPATHs of loader ==
+       NULL.
+
        * posix/tst-preadwrite.c: Allow parallel execution of
        tst-preadwrite and tst-preadwrite64.
 
index f5b2bcd031c76aab7bfd59188d6969c2acf4fc5d..17ce562ddd0b6448bfd39ec8a34d26437a6c650f 100644 (file)
@@ -1346,7 +1346,7 @@ _dl_map_object (struct link_map *loader, const char *name, int preloaded,
 
       /* When the object has the RUNPATH information we don't use any
          RPATHs.  */
-      if (loader != NULL && loader->l_info[DT_RUNPATH] == NULL)
+      if (loader == NULL || loader->l_info[DT_RUNPATH] == NULL)
        {
          /* First try the DT_RPATH of the dependent object that caused NAME
             to be loaded.  Then that object's dependent, and on up.  */
This page took 0.047719 seconds and 5 git commands to generate.