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

* linker.c (already_linked_newfunc): Check for NULL return from
	bfd_hash_allocate.
This commit is contained in:
Michael Snyder 2007-07-26 21:53:35 +00:00
parent ac38308c95
commit 2d4f3e92ff
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2007-07-26 Michael Snyder <msnyder@access-company.com>
* linker.c (already_linked_newfunc): Check for NULL return from
bfd_hash_allocate.
* coffgen.c (fixup_symbol_value): Guard against null;
bfd_is_com_section will dereference the section pointer.

View File

@ -2948,6 +2948,9 @@ already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
ret->entry = NULL;
if (ret == NULL)
return ret;
return &ret->root;
}