mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
* elf64-alpha.c (elf64_alpha_relax_section): Don't crash if
local_got_entries is NULL.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-02-07 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* elf64-alpha.c (elf64_alpha_relax_section): Don't crash if
|
||||||
|
local_got_entries is NULL.
|
||||||
|
|
||||||
2003-02-06 Andreas Schwab <schwab@suse.de>
|
2003-02-06 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
* elf-eh-frame.c (get_DW_EH_PE_signed): Define.
|
* elf-eh-frame.c (get_DW_EH_PE_signed): Define.
|
||||||
|
@ -2184,7 +2184,13 @@ elf64_alpha_relax_section (abfd, sec, link_info, again)
|
|||||||
|
|
||||||
info.h = NULL;
|
info.h = NULL;
|
||||||
info.other = isym->st_other;
|
info.other = isym->st_other;
|
||||||
info.first_gotent = &local_got_entries[r_symndx];
|
if (local_got_entries)
|
||||||
|
info.first_gotent = &local_got_entries[r_symndx];
|
||||||
|
else
|
||||||
|
{
|
||||||
|
info.first_gotent = &info.gotent;
|
||||||
|
info.gotent = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user