aboutsummaryrefslogtreecommitdiff
path: root/gold/reloc.cc
diff options
context:
space:
mode:
authorMichael Krasnyk <mkrasnyk@argo.ai>2021-07-17 17:35:56 +0200
committerAlan Modra <amodra@gmail.com>2021-07-18 22:04:36 +0930
commit7c6ff8af98718116c835f46a55b480b9684ea4ef (patch)
tree21028741672beec5c91424ed4aba6ceebd5c03dc /gold/reloc.cc
parent85460c161d9b25b96320e6e234e1e83c01a51f09 (diff)
downloadfsf-binutils-gdb-7c6ff8af98718116c835f46a55b480b9684ea4ef.zip
fsf-binutils-gdb-7c6ff8af98718116c835f46a55b480b9684ea4ef.tar.gz
fsf-binutils-gdb-7c6ff8af98718116c835f46a55b480b9684ea4ef.tar.bz2
PR28098 Skip R_*_NONE relocation entries with zero r_sym without counting
PR gold/28098 * reloc.cc (Track_relocs::advance): Skip R_*_NONE relocation entries with r_sym of zero without counting in advance method.
Diffstat (limited to 'gold/reloc.cc')
-rw-r--r--gold/reloc.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gold/reloc.cc b/gold/reloc.cc
index 34a836f..82ec6cb 100644
--- a/gold/reloc.cc
+++ b/gold/reloc.cc
@@ -1602,7 +1602,10 @@ Track_relocs<size, big_endian>::advance(off_t offset)
elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_);
if (static_cast<off_t>(rel.get_r_offset()) >= offset)
break;
- ++ret;
+ // Skip R_*_NONE relocation entries with r_sym of zero
+ // without counting.
+ if (rel.get_r_info() != 0)
+ ++ret;
this->pos_ += this->reloc_size_;
}
return ret;