diff options
author | Nick Clifton <nickc@redhat.com> | 2018-04-17 17:47:51 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2018-04-17 17:47:51 +0100 |
commit | 808346fcfcff1c3f2471c98e48613afd7bce3679 (patch) | |
tree | 0a0fc7a563dabb064b5db4a2032ecf764e985513 /bfd/hash.c | |
parent | c4a91159afa222c1025f1535f42e382b91dc6b73 (diff) | |
download | gdb-808346fcfcff1c3f2471c98e48613afd7bce3679.zip gdb-808346fcfcff1c3f2471c98e48613afd7bce3679.tar.gz gdb-808346fcfcff1c3f2471c98e48613afd7bce3679.tar.bz2 |
Fix illegal memory accesses trigeered when linking corrupt input files.
PR 23055
* aoutx.h (find_nearest_line): Check that the symbol name exists
and is long enough, before attempting to see if it is for a .o
file.
* hash.c (bfd_hash_hash): Add an assertion that the string is not
NULL.
* linker.c (bfd_link_hash_lookup): Fail if the table or string are
NULL.
(_bfd_generic_link_add_archive_symbols): Fail if an archive entry
has no name.
Diffstat (limited to 'bfd/hash.c')
-rw-r--r-- | bfd/hash.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -435,6 +435,7 @@ bfd_hash_hash (const char *string, unsigned int *lenp) unsigned int len; unsigned int c; + BFD_ASSERT (string != NULL); hash = 0; len = 0; s = (const unsigned char *) string; |