aboutsummaryrefslogtreecommitdiff
path: root/bfd/linker.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2021-10-19 16:02:49 +0100
committerNick Clifton <nickc@redhat.com>2021-10-19 16:02:49 +0100
commitcf487499e0d7ef64ab63d6c76bf298bfaf64b980 (patch)
tree122027a0a59f41ba89e2cd5c5a991a0cf2e76f6f /bfd/linker.c
parentd4ef5e75c7ebf57b946f59ce85568b9c459a02f4 (diff)
downloadgdb-cf487499e0d7ef64ab63d6c76bf298bfaf64b980.zip
gdb-cf487499e0d7ef64ab63d6c76bf298bfaf64b980.tar.gz
gdb-cf487499e0d7ef64ab63d6c76bf298bfaf64b980.tar.bz2
Fix a potential illegal memory access when testing for a special LTO symbol name.
bfd * linker.c (_bfd_generic_link_add_one_symbol): Test for a NULL name before checking to see if the symbol is __gnu_lto_slim. * archive.c (_bfd_compute_and_write_armap): Likewise. binutils * nm.c (filter_symbols): Test for a NULL name before checking to see if the symbol is __gnu_lto_slim. * objcopy.c (filter_symbols): Likewise.
Diffstat (limited to 'bfd/linker.c')
-rw-r--r--bfd/linker.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/linker.c b/bfd/linker.c
index f8257ea..3019dae 100644
--- a/bfd/linker.c
+++ b/bfd/linker.c
@@ -1420,6 +1420,7 @@ _bfd_generic_link_add_one_symbol (struct bfd_link_info *info,
{
row = COMMON_ROW;
if (!bfd_link_relocatable (info)
+ && name != NULL
&& name[0] == '_'
&& name[1] == '_'
&& strcmp (name + (name[2] == '_'), "__gnu_lto_slim") == 0)