mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
Ensure that the timestamp in PE/COFF headers is always initialised.
PR ld/20634 * peXXigen.c (_bfd_XXi_only_swap_filehdr_out): Put 0 in the timestamp field if real time values are not being stored.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2016-09-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR ld/20634
|
||||||
|
* peXXigen.c (_bfd_XXi_only_swap_filehdr_out): Put 0 in the
|
||||||
|
timestamp field if real time values are not being stored.
|
||||||
|
|
||||||
2016-09-26 Vlad Zakharov <vzakhar@synopsys.com>
|
2016-09-26 Vlad Zakharov <vzakhar@synopsys.com>
|
||||||
|
|
||||||
* warning.m4 (AC_EGREP_CPP_FOR_BUILD): Introduce macro
|
* warning.m4 (AC_EGREP_CPP_FOR_BUILD): Introduce macro
|
||||||
|
@ -879,6 +879,8 @@ _bfd_XXi_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
|
|||||||
/* Only use a real timestamp if the option was chosen. */
|
/* Only use a real timestamp if the option was chosen. */
|
||||||
if ((pe_data (abfd)->insert_timestamp))
|
if ((pe_data (abfd)->insert_timestamp))
|
||||||
H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
|
H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
|
||||||
|
else
|
||||||
|
H_PUT_32 (abfd, 0, filehdr_out->f_timdat);
|
||||||
|
|
||||||
PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
|
PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
|
||||||
filehdr_out->f_symptr);
|
filehdr_out->f_symptr);
|
||||||
|
Reference in New Issue
Block a user