Browse Source

bfd/

2009-04-27  H.J. Lu  <hongjiu.lu@intel.com>

	* peXXigen.c (_bfd_XX_bfd_copy_private_bfd_data_common): Don't
	copy pe_opthdr.

binutils/

2009-04-27  H.J. Lu  <hongjiu.lu@intel.com>

	* objcopy.c (copy_object): Copy pe_opthdr before changing PE
	parameters.
cgen-1_1-branch
H.J. Lu 18 years ago
parent
commit
325c681d94
  1. 5
      bfd/ChangeLog
  2. 2
      bfd/peXXigen.c
  3. 5
      binutils/ChangeLog
  4. 5
      binutils/objcopy.c

5
bfd/ChangeLog

@ -1,3 +1,8 @@
2009-04-27 H.J. Lu <hongjiu.lu@intel.com>
* peXXigen.c (_bfd_XX_bfd_copy_private_bfd_data_common): Don't
copy pe_opthdr.
2009-04-23 Matthias Klose <doko@ubuntu.com>
* peXXigen.c (_bfd_XXi_swap_sym_in): Initialize `name'.

2
bfd/peXXigen.c

@ -2188,7 +2188,7 @@ _bfd_XX_bfd_copy_private_bfd_data_common (bfd * ibfd, bfd * obfd)
ipe = pe_data (ibfd);
ope = pe_data (obfd);
ope->pe_opthdr = ipe->pe_opthdr;
/* pe_opthdr is copied in copy_object. */
ope->dll = ipe->dll;
/* Don't copy input subsystem if output is different from input. */

5
binutils/ChangeLog

@ -1,3 +1,8 @@
2009-04-27 H.J. Lu <hongjiu.lu@intel.com>
* objcopy.c (copy_object): Copy pe_opthdr before changing PE
parameters.
2009-04-24 Cary Coutant <ccoutant@google.com>
* dwarf.c (process_extended_line_op): Add DW_LNE_set_discriminator.

5
binutils/objcopy.c

@ -1491,6 +1491,11 @@ copy_object (bfd *ibfd, bfd *obfd)
/* Set up PE parameters. */
pe_data_type *pe = pe_data (obfd);
/* Copy PE parameters before changing them. */
if (ibfd->xvec->flavour == bfd_target_coff_flavour
&& bfd_pei_p (ibfd))
pe->pe_opthdr = pe_data (ibfd)->pe_opthdr;
if (pe_file_alignment != (bfd_vma) -1)
pe->pe_opthdr.FileAlignment = pe_file_alignment;
else

Loading…
Cancel
Save