[PATCH] libdl/rap: Add the section alloc call after section load was split

chrisj at rtems.org chrisj at rtems.org
Thu Feb 14 23:42:31 UTC 2019


From: Chris Johns <chrisj at rtems.org>

Updates #3687
---
 cpukit/libdl/rtl-rap.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/cpukit/libdl/rtl-rap.c b/cpukit/libdl/rtl-rap.c
index afbc268be6..937d48895b 100644
--- a/cpukit/libdl/rtl-rap.c
+++ b/cpukit/libdl/rtl-rap.c
@@ -967,6 +967,12 @@ rtems_rtl_rap_file_load (rtems_rtl_obj* obj, int fd)
 
   /** obj->entry = (void*)(uintptr_t) ehdr.e_entry; */
 
+  /*
+   * Allocate the sections.
+   */
+  if (!rtems_rtl_obj_alloc_sections (obj, fd, NULL, &rap))
+    return false;
+
   if (!rtems_rtl_obj_load_sections (obj, fd, rtems_rtl_rap_loader, &rap))
     return false;
 
-- 
2.19.1



More information about the devel mailing list