Browse Source

2007-07-26 Michael Snyder <msnyder@access-company.com>

* tekhex.c (first_phase): Check return value for null.
binutils-2_18-branch
Michael Snyder 19 years ago
parent
commit
814b5378b4
  1. 2
      bfd/ChangeLog
  2. 2
      bfd/tekhex.c

2
bfd/ChangeLog

@ -1,5 +1,7 @@
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
pointer increment.

2
bfd/tekhex.c

@ -389,6 +389,8 @@ first_phase (bfd *abfd, int type, char *src)
return FALSE;
memcpy (n, sym, len + 1);
section = bfd_make_section (abfd, n);
if (section == NULL)
return FALSE;
}
while (*src)
{

Loading…
Cancel
Save