From f61cefa88de1c293af6650a6dc2061e000a9722b Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Tue, 7 Apr 2009 17:56:21 +0200 Subject: [PATCH] dwarflint: Ignore invalid relocations in relocation_next --- src/dwarflint.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dwarflint.c b/src/dwarflint.c index e5f7bbec8..fb5e92fb3 100644 --- a/src/dwarflint.c +++ b/src/dwarflint.c @@ -2529,6 +2529,9 @@ relocation_next (struct relocation_data *reloc, uint64_t offset, reloc->index++; + if (rel->invalid) + continue; + if (rel->offset < offset) { if (st != skip_ok) -- 2.47.2