Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2004-10-27  Ulrich Drepper  <drepper@redhat.com>

	* elf/dl-load.c (_dl_map_object): Use cache_rpath to check for
	existing rpath in main executable, not explicit test.
  • Loading branch information
Ulrich Drepper committed Oct 28, 2004
1 parent 32738a2 commit 7d4afb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2004-10-27 Ulrich Drepper <drepper@redhat.com>

* elf/dl-load.c (_dl_map_object): Use cache_rpath to check for
existing rpath in main executable, not explicit test.

2004-10-27 Jakub Jelinek <jakub@redhat.com>

* include/resolv.h (_res_opcodes): New extern.
Expand Down
2 changes: 1 addition & 1 deletion elf/dl-load.c
Expand Up @@ -1875,7 +1875,7 @@ _dl_map_object (struct link_map *loader, const char *name, int preloaded,
{
l = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
if (l && l->l_type != lt_loaded && l != loader
&& l->l_rpath_dirs.dirs != (void *) -1)
&& cache_rpath (l, &l->l_rpath_dirs, DT_RPATH, "RPATH"))
fd = open_path (name, namelen, preloaded, &l->l_rpath_dirs,
&realname, &fb);
}
Expand Down
1 change: 0 additions & 1 deletion elf/tst-dlmopen3.c
@@ -1,6 +1,5 @@
#include <dlfcn.h>
#include <stdio.h>
#include <gnu/lib-names.h>


static int
Expand Down

0 comments on commit 7d4afb9

Please sign in to comment.