From 1c5f704fc035bc705dee887418f42cb8bca24b5d Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 27 Sep 2016 12:08:19 +0100 Subject: 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. --- bfd/peXXigen.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bfd/peXXigen.c') diff --git a/bfd/peXXigen.c b/bfd/peXXigen.c index c92c1ea..d713d96 100644 --- a/bfd/peXXigen.c +++ b/bfd/peXXigen.c @@ -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. */ if ((pe_data (abfd)->insert_timestamp)) 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, filehdr_out->f_symptr); -- cgit v1.1