2007-07-26 Michael Snyder <msnyder@access-company.com>
authorMichael Snyder <msnyder@vmware.com>
Thu, 26 Jul 2007 21:53:35 +0000 (21:53 +0000)
committerMichael Snyder <msnyder@vmware.com>
Thu, 26 Jul 2007 21:53:35 +0000 (21:53 +0000)
* linker.c (already_linked_newfunc): Check for NULL return from
bfd_hash_allocate.

bfd/ChangeLog
bfd/linker.c

index b51de1f..538436d 100644 (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.
 
index f547a75..d31752b 100644 (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;
 }