From ee55de4929e149035712f805baeb391e121615a4 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Thu, 26 Aug 2004 14:00:04 +0000 Subject: Added test for RTLD_GLOBAL flag in _dl_find_hash(). Fixed a bug in libdl.c where the RTLD_GLOBAL was assigned wronly. --- ldso/ldso/dl-hash.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ldso/ldso/dl-hash.c') diff --git a/ldso/ldso/dl-hash.c b/ldso/ldso/dl-hash.c index 109ee0e76..bac4a506a 100644 --- a/ldso/ldso/dl-hash.c +++ b/ldso/ldso/dl-hash.c @@ -173,6 +173,8 @@ char *_dl_find_hash(const char *name, struct dyn_elf *rpnt, int type_class) for (; rpnt; rpnt = rpnt->next) { tpnt = rpnt->dyn; + if (!(tpnt->rtld_flags & RTLD_GLOBAL)) + continue; /* Don't search the executable when resolving a copy reloc. */ if ((type_class & ELF_RTYPE_CLASS_COPY) && tpnt->libtype == elf_executable) continue; -- cgit v1.2.3