From 3ecb207d05a585b34e88ac649be0e4f503fdb290 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 15 Feb 2019 10:38:41 +1100 Subject: libdl/rap: Add the section alloc call after section load was split 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; -- cgit v1.2.3