[PATCH 3/3] [linkers] rld-rap: Ignore relocations with section index 0

Hesham Almatary Hesham.Almatary at cl.cam.ac.uk
Mon Nov 11 12:40:06 UTC 2019


---
 rtemstoolkit/rld-rap.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/rtemstoolkit/rld-rap.cpp b/rtemstoolkit/rld-rap.cpp
index 455328a..809b6d1 100644
--- a/rtemstoolkit/rld-rap.cpp
+++ b/rtemstoolkit/rld-rap.cpp
@@ -1399,6 +1399,12 @@ namespace rld
             bool              write_addend = sec.rela;
             bool              write_symname = false;
 
+            /*
+             * Ignore section index 0
+             */
+            if (reloc.symsect == 0)
+              continue;
+
             offset = sec.offset + reloc.offset;
 
             if (rld::verbose () >= RLD_VERBOSE_TRACE)
-- 
2.17.1



More information about the devel mailing list