asan: NULL dereference in spu_elf_object_p
* elf32-spu.c (spu_elf_object_p): Don't dereference NULL shdr->bfd_section.
This commit is contained in:
parent
9effb9f15f
commit
8007515072
1 changed files with 2 additions and 1 deletions
|
@ -286,7 +286,8 @@ spu_elf_object_p (bfd *abfd)
|
|||
{
|
||||
Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[j];
|
||||
|
||||
if (ELF_SECTION_SIZE (shdr, phdr) != 0
|
||||
if (shdr->bfd_section != NULL
|
||||
&& ELF_SECTION_SIZE (shdr, phdr) != 0
|
||||
&& ELF_SECTION_IN_SEGMENT (shdr, phdr))
|
||||
{
|
||||
asection *sec = shdr->bfd_section;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue