From: Jon Turney Date: Fri, 21 Aug 2020 15:30:00 +0000 (+0100) Subject: Fix erroroneous use of '%zu' in elfcore_grok_win32pstatus X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cdad0846b5f37898798d4145e5b991900a46ec5;p=binutils-gdb.git Fix erroroneous use of '%zu' in elfcore_grok_win32pstatus As reported in [1], _bfd_error_handler() doesn't support '%zu'. module_name_size is always 32-bits in the data structure we are extracting it from, so use an unsigned int to store it instead. [1] https://sourceware.org/pipermail/gdb-patches/2020-August/171391.html bfd/ChangeLog: 2020-08-21 Jon Turney * elf.c (elfcore_grok_win32pstatus): Change name_size to unsigned int. Use '%u' format with _bfd_error_handler to render it. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ca79c4e5830..f2d18122bbc 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2020-08-21 Jon Turney + + * elf.c (elfcore_grok_win32pstatus): Change name_size to unsigned + int. Use '%u' format with _bfd_error_handler to render it. + 2020-08-25 Alan Modra PR 26489 diff --git a/bfd/elf.c b/bfd/elf.c index ecd9217b34d..f32118ad404 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -10140,7 +10140,7 @@ elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note) char buf[30]; char *name; size_t len; - size_t name_size; + unsigned int name_size; asection *sect; unsigned int type; int is_active_thread; @@ -10248,7 +10248,7 @@ elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note) if (note->descsz < 12 + name_size) { - _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %zu"), + _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"), abfd, note->descsz, name_size); return TRUE; }