diff options
Diffstat (limited to 'bfd/elf32-cris.c')
-rw-r--r-- | bfd/elf32-cris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c index 30570ee4eba..2348cd4403e 100644 --- a/bfd/elf32-cris.c +++ b/bfd/elf32-cris.c @@ -710,14 +710,14 @@ elf_cris_link_hash_table_create (abfd) struct elf_cris_link_hash_table *ret; bfd_size_type amt = sizeof (struct elf_cris_link_hash_table); - ret = ((struct elf_cris_link_hash_table *) bfd_alloc (abfd, amt)); + ret = ((struct elf_cris_link_hash_table *) bfd_malloc (amt)); if (ret == (struct elf_cris_link_hash_table *) NULL) return NULL; if (! _bfd_elf_link_hash_table_init (&ret->root, abfd, elf_cris_link_hash_newfunc)) { - bfd_release (abfd, ret); + free (ret); return NULL; } |