* elf32-sparc.c (elf32_sparc_link_hash_table_create): Use bfd_zmalloc
to zero the structure. (create_got_section): Use BFD_ASSERT instead of abort.
This commit is contained in:
parent
a51a7930ba
commit
01aac484a6
2 changed files with 11 additions and 16 deletions
|
@ -1,5 +1,8 @@
|
|||
2005-01-09 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||
|
||||
* elf32-sparc.c (elf32_sparc_link_hash_table_create): Use bfd_zmalloc
|
||||
to zero the structure.
|
||||
(create_got_section): Use BFD_ASSERT instead of abort.
|
||||
* elf64-sparc.c (struct sparc64_elf_link_hash_table): New 'sgot' and
|
||||
'srelgot' fields.
|
||||
(create_got_section): New function.
|
||||
|
|
|
@ -695,7 +695,7 @@ elf32_sparc_link_hash_table_create (abfd)
|
|||
struct elf32_sparc_link_hash_table *ret;
|
||||
bfd_size_type amt = sizeof (struct elf32_sparc_link_hash_table);
|
||||
|
||||
ret = (struct elf32_sparc_link_hash_table *) bfd_malloc (amt);
|
||||
ret = (struct elf32_sparc_link_hash_table *) bfd_zmalloc (amt);
|
||||
if (ret == NULL)
|
||||
return NULL;
|
||||
|
||||
|
@ -705,15 +705,6 @@ elf32_sparc_link_hash_table_create (abfd)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
ret->sgot = NULL;
|
||||
ret->srelgot = NULL;
|
||||
ret->splt = NULL;
|
||||
ret->srelplt = NULL;
|
||||
ret->sdynbss = NULL;
|
||||
ret->srelbss = NULL;
|
||||
ret->tls_ldm_got.refcount = 0;
|
||||
ret->sym_sec.abfd = NULL;
|
||||
|
||||
return &ret->elf.root;
|
||||
}
|
||||
|
||||
|
@ -732,15 +723,16 @@ create_got_section (dynobj, info)
|
|||
|
||||
htab = elf32_sparc_hash_table (info);
|
||||
htab->sgot = bfd_get_section_by_name (dynobj, ".got");
|
||||
if (!htab->sgot)
|
||||
abort ();
|
||||
BFD_ASSERT (htab->sgot != NULL);
|
||||
|
||||
htab->srelgot = bfd_make_section (dynobj, ".rela.got");
|
||||
if (htab->srelgot == NULL
|
||||
|| ! bfd_set_section_flags (dynobj, htab->srelgot,
|
||||
(SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
|
||||
| SEC_IN_MEMORY | SEC_LINKER_CREATED
|
||||
| SEC_READONLY))
|
||||
|| ! bfd_set_section_flags (dynobj, htab->srelgot, SEC_ALLOC
|
||||
| SEC_LOAD
|
||||
| SEC_HAS_CONTENTS
|
||||
| SEC_IN_MEMORY
|
||||
| SEC_LINKER_CREATED
|
||||
| SEC_READONLY)
|
||||
|| ! bfd_set_section_alignment (dynobj, htab->srelgot, 2))
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue