mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
2001-04-26 H.J. Lu <hjl@gnu.org>
* elf32-i386.c (elf_i386_check_relocs): Verify if r_symndx is valid.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2001-04-26 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* elf32-i386.c (elf_i386_check_relocs): Verify if r_symndx is
|
||||||
|
valid.
|
||||||
|
|
||||||
2001-04-25 Frank Ch. Eigler <fche@redhat.com>
|
2001-04-25 Frank Ch. Eigler <fche@redhat.com>
|
||||||
|
|
||||||
* bfd-in.h (bfd_cache_close): Declare newly exported function.
|
* bfd-in.h (bfd_cache_close): Declare newly exported function.
|
||||||
|
@ -501,6 +501,20 @@ elf_i386_check_relocs (abfd, info, sec, relocs)
|
|||||||
|
|
||||||
r_symndx = ELF32_R_SYM (rel->r_info);
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
||||||
|
|
||||||
|
if (r_symndx >= symtab_hdr->sh_size / symtab_hdr->sh_entsize)
|
||||||
|
{
|
||||||
|
if (abfd->my_archive)
|
||||||
|
(*_bfd_error_handler) (_("%s(%s): bad symbol index: %d"),
|
||||||
|
bfd_get_filename (abfd->my_archive),
|
||||||
|
bfd_get_filename (abfd),
|
||||||
|
r_symndx);
|
||||||
|
else
|
||||||
|
(*_bfd_error_handler) (_("%s: bad symbol index: %d"),
|
||||||
|
bfd_get_filename (abfd),
|
||||||
|
r_symndx);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (r_symndx < symtab_hdr->sh_info)
|
if (r_symndx < symtab_hdr->sh_info)
|
||||||
h = NULL;
|
h = NULL;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user