mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 13:53:29 +08:00
2007-07-26 Michael Snyder <msnyder@access-company.com>
* tekhex.c (first_phase): Check return value for null.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2007-07-26 Michael Snyder <msnyder@access-company.com>
|
2007-07-26 Michael Snyder <msnyder@access-company.com>
|
||||||
|
|
||||||
|
* tekhex.c (first_phase): Check return value for null.
|
||||||
|
|
||||||
* elf.c (_bfd_elf_get_synthetic_symtab): Remove meaningless
|
* elf.c (_bfd_elf_get_synthetic_symtab): Remove meaningless
|
||||||
pointer increment.
|
pointer increment.
|
||||||
|
|
||||||
|
@ -389,6 +389,8 @@ first_phase (bfd *abfd, int type, char *src)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
memcpy (n, sym, len + 1);
|
memcpy (n, sym, len + 1);
|
||||||
section = bfd_make_section (abfd, n);
|
section = bfd_make_section (abfd, n);
|
||||||
|
if (section == NULL)
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
while (*src)
|
while (*src)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user