summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog6
-rw-r--r--binutils/rescoff.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 3b6f045e78a..f705b6c4622 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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
diff --git a/binutils/rescoff.c b/binutils/rescoff.c
index 40a8f452a1f..5a99a284c14 100644
--- a/binutils/rescoff.c
+++ b/binutils/rescoff.c
@@ -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");