aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2003-09-19 02:08:35 +0000
committerAlan Modra <amodra@gmail.com>2003-09-19 02:08:35 +0000
commit5de3bf90966b027e4a1c63f6331079efc9451a48 (patch)
treed9f85b2ac5098e9aae3107a8273045d9aebb714f /bfd
parentfdeb2c9fb737b6428f71d22371b925a86209153f (diff)
downloadfsf-binutils-gdb-5de3bf90966b027e4a1c63f6331079efc9451a48.zip
fsf-binutils-gdb-5de3bf90966b027e4a1c63f6331079efc9451a48.tar.gz
fsf-binutils-gdb-5de3bf90966b027e4a1c63f6331079efc9451a48.tar.bz2
* elf.c (elfcore_write_note): Don't use sizeof(Elf_External_note)
since some ABIs round up the size of the struct.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog13
-rw-r--r--bfd/elf.c4
2 files changed, 11 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 49cfb2b4..4ffd41f 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-19 Alan Modra <amodra@bigpond.net.au>
+
+ * elf.c (elfcore_write_note): Don't use sizeof(Elf_External_note)
+ since some ABIs round up the size of the struct.
+
2003-09-18 H.J. Lu <hongjiu.lu@intel.com>
* elflink.c (_bfd_elf_merge_symbol): Allow type change if
@@ -69,10 +74,10 @@
(v850_elf_print_private_bfd_data): Interpret E_V850E1_ARCH flag.
(v850_elf_merge_private_bfd_data): Allow v850e1 binaries to be
linked with v850e binaries. Mark the output as v850e.
-
+
2003-09-03 Nick Clifton <nickc@redhat.com>
- * cofflink.c (_bfd_coff_link_input_bfd): Do not skip section
+ * cofflink.c (_bfd_coff_link_input_bfd): Do not skip section
symbols that are used in relocs.
2003-08-30 Robert Millan <robertmh@gnu.org>
@@ -127,7 +132,7 @@
2003-08-24 Jason Eckhardt <jle@rice.edu>
- * coff-i860.c (CALC_ADDEND): Define to be a no-op.
+ * coff-i860.c (CALC_ADDEND): Define to be a no-op.
2003-08-24 Jason Eckhardt <jle@rice.edu>
@@ -136,7 +141,7 @@
2003-08-23 Jason Eckhardt <jle@rice.edu>
- * coff-i860.c (coff_i860_reloc_nyi): New function.
+ * coff-i860.c (coff_i860_reloc_nyi): New function.
(howto_table): Add entries for relocations PAIR, HIGHADJ, HIGH,
LOWn, SPLITn, and BRADDR.
(RTYPE2HOWTO): Check that the r_type is within the howto_table
diff --git a/bfd/elf.c b/bfd/elf.c
index 3868cff..5935803 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -2430,7 +2430,7 @@ elf_fake_sections (bfd *abfd, asection *asect, void *failedptrarg)
case SHT_HASH:
this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
break;
-
+
case SHT_DYNSYM:
this_hdr->sh_entsize = bed->s->sizeof_sym;
break;
@@ -7066,7 +7066,7 @@ elfcore_write_note (bfd *abfd,
pad = -namesz & ((1 << bed->s->log_file_align) - 1);
}
- newspace = sizeof (Elf_External_Note) - 1 + namesz + pad + size;
+ newspace = 12 + namesz + pad + size;
p = realloc (buf, *bufsiz + newspace);
dest = p + *bufsiz;