diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-06-20 09:58:36 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-06-20 09:58:36 +0000 |
commit | ed66ec07d2730c3472f9b8c6e11bfe3cdd27329a (patch) | |
tree | 6f5c478083938151af338dacb70fecf61d36b722 /bfd/bfd.c | |
parent | d42c4017ba4db98cfc668c170ebd1dce45a4a232 (diff) | |
download | binutils-ed66ec07d2730c3472f9b8c6e11bfe3cdd27329a.zip binutils-ed66ec07d2730c3472f9b8c6e11bfe3cdd27329a.tar.gz binutils-ed66ec07d2730c3472f9b8c6e11bfe3cdd27329a.tar.bz2 |
* bfd.c (bfd_record_phdr): Clear p_align and p_align_valid fields.
* elf.c (_bfd_elf_link_hash_table_init): Clear hplt field.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r-- | bfd/bfd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1336,6 +1336,8 @@ bfd_record_phdr (bfd *abfd, m->includes_filehdr = includes_filehdr; m->includes_phdrs = includes_phdrs; m->count = count; + m->p_align_valid = FALSE; + m->p_align = 0; if (count > 0) memcpy (m->sections, secs, count * sizeof (asection *)); |