* elf.c (elfcore_write_note): Pad to 4-byte boundary.

This commit is contained in:
Alan Modra 2006-10-29 23:49:37 +00:00
parent b12e747eaf
commit 017657f056
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-10-30 Alan Modra <amodra@bigpond.net.au>
* elf.c (elfcore_write_note): Pad to 4-byte boundary.
2006-10-28 Richard Sandiford <richard@codesourcery.com>
* elf32-mips.c (elf_mips_howto_table_rel): Add R_MIPS_GLOB_DAT.

View File

@ -8120,7 +8120,7 @@ elfcore_write_note (bfd *abfd,
namesz = strlen (name) + 1;
bed = get_elf_backend_data (abfd);
pad = -namesz & ((1 << bed->s->log_file_align) - 1);
pad = -namesz & 3;
}
newspace = 12 + namesz + pad + size;