diff options
author | Alan Modra <amodra@gmail.com> | 2020-12-17 23:21:11 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-12-18 10:34:16 +1030 |
commit | 7fbd5f4e2c143bbe28715608ca00e2e93a7d7fd4 (patch) | |
tree | f6bc1211e0cdaecc93850eae7a46b305632c0035 /bfd/archive.c | |
parent | bd38246a45dc199ce32b50878670bbbdf7e27ad5 (diff) | |
download | gdb-7fbd5f4e2c143bbe28715608ca00e2e93a7d7fd4.zip gdb-7fbd5f4e2c143bbe28715608ca00e2e93a7d7fd4.tar.gz gdb-7fbd5f4e2c143bbe28715608ca00e2e93a7d7fd4.tar.bz2 |
Remove some static buffers
Fixes possible overflow of a static buffer for powerpc with translated
messages, and on v850 when symbol names are large.
* archive.c (_bfd_ar_spacepad, _bfd_ar_sizepad): Use auto buf.
* coff-mcore.c (coff_mcore_relocate_section): Likewise.
* elf32-ppc.c (ppc_elf_unhandled_reloc): Use asprintf in place
of fixed size and possibly too small buf for translated message.
* elf64-ppc.c (ppc64_elf_unhandled_reloc): Likewise.
* elf32-v850.c (v850_elf_check_relocs): Likewise.
* ecoff.c (ecoff_type_to_string): Pass in return string buff rather
than using static buffer2. Delete dead code. Remove unnecessary
parentheses.
(_bfd_ecoff_print_symbol): Pass auto buff to ecoff_type_to_string.
* elf32-rx.c (describe_flags): Pass in return string buf rather
than using static buf.
(rx_elf_merge_private_bfd_data): Pass buf to describe_flags.
(rx_elf_print_private_bfd_data): Likewise.
* mach-o.c (cpusubtype): Pass in return string buffer rather than
using static buffer.
(bfd_mach_o_bfd_print_private_bfd_data): Pass buff to cpusubtype.
* opncls.c (separate_debug_file_exists): Make buffer an auto var.
(bfd_fill_in_gnu_debuglink_section): Likewise.
* peXXigen.c (rsrc_resource_name): Pass in return string buffer
rather than using static buffer.
(rsrc_sort_entries): Pass buff to rsrc_resource_name.
* vms-alpha.c (_bfd_vms_write_emh): Pass tbuf to get_vms_time_string.
* vms-misc.c (get_vms_time_string): Pass in return string tbuf
rather than using static tbuf.
* vms.h (get_vms_time_string): Update prototype.
Diffstat (limited to 'bfd/archive.c')
-rw-r--r-- | bfd/archive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/archive.c b/bfd/archive.c index 0250d6f..10e1423 100644 --- a/bfd/archive.c +++ b/bfd/archive.c @@ -172,7 +172,7 @@ struct ar_cache void _bfd_ar_spacepad (char *p, size_t n, const char *fmt, long val) { - static char buf[20]; + char buf[20]; size_t len; snprintf (buf, sizeof (buf), fmt, val); @@ -189,7 +189,7 @@ _bfd_ar_spacepad (char *p, size_t n, const char *fmt, long val) bfd_boolean _bfd_ar_sizepad (char *p, size_t n, bfd_size_type size) { - static char buf[21]; + char buf[21]; size_t len; snprintf (buf, sizeof (buf), "%-10" BFD_VMA_FMT "u", size); |