Add ATTRIBUTE_NONSTRING to ppc64_elf_write_core_note
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 23 May 2018 17:15:11 +0000 (10:15 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 23 May 2018 17:15:11 +0000 (10:15 -0700)
This patch silences gcc8 -Wstringop-truncation warnings.

* elf64-ppc.c (ppc64_elf_write_core_note): Add ATTRIBUTE_NONSTRING
to data.

bfd/ChangeLog
bfd/elf64-ppc.c

index 1f6a85f7e07e29e5f339aeeb8b68fe44e5ae287d..f086ad59c14a8a34a55c64feebe7299d3336aef9 100644 (file)
@@ -1,3 +1,8 @@
+2018-05-23  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf64-ppc.c (ppc64_elf_write_core_note): Add ATTRIBUTE_NONSTRING
+       to data.
+
 2018-05-22  Alan Modra  <amodra@gmail.com>
 
        PR 23207
index b16655894564538009f5ae44f65f9e27cb3035e9..7f7a8f777ed9c1157bd771360e05ed86e3d4c5af 100644 (file)
@@ -3035,7 +3035,7 @@ ppc64_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
 
     case NT_PRPSINFO:
       {
-       char data[136];
+       char data[136] ATTRIBUTE_NONSTRING;
        va_list ap;
 
        va_start (ap, note_type);
This page took 0.045552 seconds and 4 git commands to generate.