diff options
author | Mark Harmstone <mark@harmstone.com> | 2022-12-09 01:52:33 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-12-23 19:49:47 +1030 |
commit | 8b182dc3c6e7f763504c0f0e9cf699da36d499dd (patch) | |
tree | b578686742cfeccda7494568aef0b38fd5ed53e9 /ld/pdb.c | |
parent | 803561cb74922892a0c22ea4ff0564f448796c1c (diff) | |
download | binutils-8b182dc3c6e7f763504c0f0e9cf699da36d499dd.zip binutils-8b182dc3c6e7f763504c0f0e9cf699da36d499dd.tar.gz binutils-8b182dc3c6e7f763504c0f0e9cf699da36d499dd.tar.bz2 |
ld: Fix segfault in populate_publics_stream
Diffstat (limited to 'ld/pdb.c')
-rw-r--r-- | ld/pdb.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1411,6 +1411,9 @@ populate_publics_stream (bfd *stream, bfd *abfd, bfd *sym_rec_stream) for (bfd *in = coff_data (abfd)->link_info->input_bfds; in; in = in->link.next) { + if (!in->outsymbols) + continue; + for (unsigned int i = 0; i < in->symcount; i++) { struct bfd_symbol *sym = in->outsymbols[i]; |