Index: external/gpl3/binutils/dist/bfd/elf.c =================================================================== RCS file: /home/netbsd/src/external/gpl3/binutils/dist/bfd/elf.c,v retrieving revision 1.13 diff -p -u -r1.13 elf.c --- external/gpl3/binutils/dist/bfd/elf.c 7 Nov 2018 01:13:52 -0000 1.13 +++ external/gpl3/binutils/dist/bfd/elf.c 28 Nov 2019 14:16:09 -0000 @@ -298,7 +298,8 @@ bfd_elf_get_str_section (bfd *abfd, unsi /* Allocate and clear an extra byte at the end, to prevent crashes in case the string table is not terminated. */ if (shstrtabsize + 1 <= 1 - || shstrtabsize > bfd_get_file_size (abfd) + || (bfd_get_file_size (abfd) > 0 && + shstrtabsize > bfd_get_file_size (abfd)) || bfd_seek (abfd, offset, SEEK_SET) != 0 || (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL) shstrtab = NULL;