* elf/dl-addr.c (_dl_addr): Handle broken binaries with zero
symbol sizes a bit better.
2001-08-22 Ulrich Drepper <drepper@redhat.com>
+ * elf/dl-addr.c (_dl_addr): Handle broken binaries with zero
+ symbol sizes a bit better.
+
* sysdeps/ia64/strncpy.S: Complete rewrite.
Contributed by Jakub Jelinek <jakub@redhat.com>.
there is no way in ELF to know the size of the dynamic symbol table!! */
for (matchsym = NULL; (void *) symtab < (void *) strtab; ++symtab)
if (addr >= match->l_addr + symtab->st_value
- && addr < match->l_addr + symtab->st_value + symtab->st_size
+ && ((symtab->st_size == 0 && addr == match->l_addr + symtab->st_value)
+ || addr < match->l_addr + symtab->st_value + symtab->st_size)
&& symtab->st_name < strtabsize
&& (matchsym == NULL || matchsym->st_value < symtab->st_value)
&& (ELFW(ST_BIND) (symtab->st_info) == STB_GLOBAL