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

* opncls.c (bfd_make_writable): Check return from bfd_malloc.
This commit is contained in:
Michael Snyder 2007-07-24 19:58:06 +00:00
parent d0f16d5ece
commit f6eea5aed8
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2007-07-24 Michael Snyder <msnyder@access-company.com>
* opncls.c (bfd_make_writable): Check return from bfd_malloc.
* elflink.c (bfd_elf_final_link): Avoid redundant frees -- return
on bfd_malloc error rather than goto error_return.

View File

@ -799,6 +799,8 @@ bfd_make_writable (bfd *abfd)
}
bim = bfd_malloc (sizeof (struct bfd_in_memory));
if (bim == NULL)
return FALSE; /* bfd_error already set. */
abfd->iostream = bim;
/* bfd_bwrite will grow these as needed. */
bim->size = 0;