Make the .rsrc section read only.

PR 30142
  * peXXigen.c (_bfd_XXi_swap_scnhdr_out): Do not force the .rsrc section to be writeable.
  * rescoff.c (write_coff_file): Add the SEC_READONLY flag to the .rsrc section.
This commit is contained in:
Nick Clifton
2023-04-17 17:19:21 +01:00
parent fb12bc1e8e
commit c53c6186c8
4 changed files with 14 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2023-04-17 Nick Clifton <nickc@redhat.com>
PR 30142
* rescoff.c (write_coff_file): Add the SEC_READONLY flag to the
.rsrc section.
2023-04-11 Nick Clifton <nickc@redhat.com>
PR 30327

View File

@@ -477,7 +477,7 @@ write_coff_file (const char *filename, const char *target,
sec = bfd_make_section_with_flags (abfd, ".rsrc",
(SEC_HAS_CONTENTS | SEC_ALLOC
| SEC_LOAD | SEC_DATA));
| SEC_LOAD | SEC_DATA | SEC_READONLY));
if (sec == NULL)
bfd_fatal ("bfd_make_section");