mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
* elf32-spu.c (needs_ovl_stub): Test that spu_elf_section_data
is non-NULL before dereferencing.
This commit is contained in:
parent
bddaf4aa26
commit
2c67c5f3e9
@ -1,3 +1,8 @@
|
||||
2007-04-12 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf32-spu.c (needs_ovl_stub): Test that spu_elf_section_data
|
||||
is non-NULL before dereferencing.
|
||||
|
||||
2007-04-11 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* elf-vxworks.c (elf_vxworks_emit_relocs): Remap weakdef PLT slot
|
||||
|
@ -704,7 +704,8 @@ needs_ovl_stub (const char *sym_name,
|
||||
return FALSE;
|
||||
|
||||
if (sym_sec == NULL
|
||||
|| sym_sec->output_section == NULL)
|
||||
|| sym_sec->output_section == NULL
|
||||
|| spu_elf_section_data (sym_sec->output_section) == NULL)
|
||||
return FALSE;
|
||||
|
||||
/* setjmp always goes via an overlay stub, because then the return
|
||||
|
Loading…
Reference in New Issue
Block a user