mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
* elfcode.h (section_from_elf_index): Correct check for invalid
section index.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Fri Aug 12 11:22:40 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
Fri Aug 12 11:22:40 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
||||||
|
|
||||||
|
* elfcode.h (section_from_elf_index): Correct check for invalid
|
||||||
|
section index.
|
||||||
|
|
||||||
* elfcode.h (elf_link_add_object_symbols): If there is no symbol
|
* elfcode.h (elf_link_add_object_symbols): If there is no symbol
|
||||||
table, try using the dynamic symbol table. From Eric Youngdale
|
table, try using the dynamic symbol table. From Eric Youngdale
|
||||||
<ericy@cais.cais.com>.
|
<ericy@cais.cais.com>.
|
||||||
|
@ -2524,7 +2524,7 @@ section_from_elf_index (abfd, index)
|
|||||||
if (index == SHN_COMMON)
|
if (index == SHN_COMMON)
|
||||||
return bfd_com_section_ptr;
|
return bfd_com_section_ptr;
|
||||||
|
|
||||||
if (index > elf_elfheader (abfd)->e_shnum)
|
if (index >= elf_elfheader (abfd)->e_shnum)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user