Skip to content

Commit

Permalink
* elf/dl-load.c (open_path): Fix test to determine whether DSO is
Browse files Browse the repository at this point in the history
	auditing.
  • Loading branch information
Ulrich Drepper committed Jun 27, 2006
1 parent a1f0de8 commit 361a370
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2006-06-27 Ulrich Drepper <drepper@redhat.com>

* elf/dl-load.c (open_path): Fix test to determine whether DSO is
auditing.

* elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
RPATH of main map twice.

Expand Down
2 changes: 1 addition & 1 deletion elf/dl-load.c
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ open_path (const char *name, size_t namelen, int preloaded,
auditing code. We must try to disturb the program as
little as possible. */
else if (loader == NULL
|| GL(dl_ns)[loader->l_ns]._ns_loaded->l_audit == 0)
|| GL(dl_ns)[loader->l_ns]._ns_loaded->l_auditing == 0)
{
/* We failed to open machine dependent library. Let's
test whether there is any directory at all. */
Expand Down

0 comments on commit 361a370

Please sign in to comment.