diff options
author | Roland McGrath <roland@gnu.org> | 1995-06-12 09:00:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-06-12 09:00:13 +0000 |
commit | f2b0f935d7c8de544408181350c13d8a4db690ca (patch) | |
tree | 658304e442dad6ff4c31f1d1d6a3293b7509f20d /sysdeps | |
parent | 5bf62f2d3a8af353fac661b224fc1604d4de51ea (diff) | |
download | glibc-f2b0f935d7c8de544408181350c13d8a4db690ca.tar.gz glibc-f2b0f935d7c8de544408181350c13d8a4db690ca.tar.xz glibc-f2b0f935d7c8de544408181350c13d8a4db690ca.zip |
* elf/dl-load.c (_dl_map_object): Add MAP_INHERIT flag in mmap
from zero fill. * elf/dl-lookup.c (_dl_lookup_symbol): Take new flag arg NOSELF; if nonzero, don't let *REF satisfy the reference itself. * elf/link.h (_dl_lookup_symbol): Add new arg NOSELF in decl. * sysdeps/i386/dl-runtime.c (_dl_runtime_resolve): Pass new arg to _dl_lookup_symbol. * elf/do-rel.h (elf_dynamic_do_rel): Pass new second arg of R->r_offset to RESOLVE callback. * elf/dl-reloc.c (_dl_relocate_object: resolve): Don't let *REF satisfy the reference itself if its value equals the reloc's offset. * elf/rtld.c (dl_main): Write a newline in fatal msg. * Makerules (lib%.so: lib%_pic.a): Pass $(LDFLAGS.so).
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/dl-runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/dl-runtime.c b/sysdeps/i386/dl-runtime.c index aac5f993ea..5e4a289031 100644 --- a/sysdeps/i386/dl-runtime.c +++ b/sysdeps/i386/dl-runtime.c @@ -64,7 +64,7 @@ _dl_runtime_resolve (Elf32_Word reloc_offset) definer = &symtab[ELF32_R_SYM (reloc->r_info)]; loadbase = _dl_lookup_symbol (strtab + definer->st_name, &definer, - scope, l->l_name); + scope, l->l_name, 0); /* Restore list frobnication done above for DT_SYMBOLIC. */ l->l_next = real_next; |