From 0ad4aaafc20afcb5aacb7a82b0b3a8150b638975 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 11 Sep 2020 15:58:51 +1000 Subject: linker/rap: Ignore relocation records with no section Uodates #4096 --- rtemstoolkit/rld-rap.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rtemstoolkit/rld-rap.cpp b/rtemstoolkit/rld-rap.cpp index 18bd763..235de27 100644 --- a/rtemstoolkit/rld-rap.cpp +++ b/rtemstoolkit/rld-rap.cpp @@ -1401,6 +1401,9 @@ namespace rld bool write_addend = sec.rela; bool write_symname = false; + if (reloc.symsect == 0) + continue; + offset = sec.offset + reloc.offset; if (rld::verbose () >= RLD_VERBOSE_TRACE) -- cgit v1.2.3