mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
Add ATTRIBUTE_NONSTRING to ppc64_elf_write_core_note
This patch silences gcc8 -Wstringop-truncation warnings. * elf64-ppc.c (ppc64_elf_write_core_note): Add ATTRIBUTE_NONSTRING to data.
This commit is contained in:
@ -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>
|
2018-05-22 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
PR 23207
|
PR 23207
|
||||||
|
@ -3035,7 +3035,7 @@ ppc64_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
|
|||||||
|
|
||||||
case NT_PRPSINFO:
|
case NT_PRPSINFO:
|
||||||
{
|
{
|
||||||
char data[136];
|
char data[136] ATTRIBUTE_NONSTRING;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
|
||||||
va_start (ap, note_type);
|
va_start (ap, note_type);
|
||||||
|
Reference in New Issue
Block a user