aboutsummaryrefslogtreecommitdiffstats
path: root/source/elfload.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-10-05 13:58:27 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-10-05 13:58:27 -0400
commitb430a38ce5674b319ef9bf1c6e773c9eb33f1542 (patch)
tree1a464b08b0ac923b421b518ae6e8bc69fd3b772b /source/elfload.cpp
parent555749ef5dde558f745f0dc6d00a168d3b3e9d58 (diff)
algorithm load fix
Diffstat (limited to 'source/elfload.cpp')
-rw-r--r--source/elfload.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/source/elfload.cpp b/source/elfload.cpp
index 2d75cb0..87461e4 100644
--- a/source/elfload.cpp
+++ b/source/elfload.cpp
@@ -43,14 +43,16 @@ constexpr static auto ptr_from_offset(void *base, uint32_t offset)
return reinterpret_cast<T>(reinterpret_cast<uint8_t *>(base) + offset);
}
-ELFManager::EntryFunc ELFManager::loadFromInternalBuffer()
+bool ELFManager::loadFromInternalBuffer()
{
+ m_entry = nullptr;
+
auto elf_data = m_file_buffer.data();
// Check the ELF's header signature
auto ehdr = reinterpret_cast<Elf32_Ehdr *>(elf_data);
if (!std::equal(ehdr->e_ident, ehdr->e_ident + 4, elf_header))
- return nullptr;
+ return false;
// Iterate through program header LOAD sections
bool loaded = false;
@@ -74,6 +76,9 @@ ELFManager::EntryFunc ELFManager::loadFromInternalBuffer()
}
- return loaded ? reinterpret_cast<ELFManager::EntryFunc>(ehdr->e_entry) : nullptr;
+ if (loaded)
+ m_entry = reinterpret_cast<ELFManager::EntryFunc>(ehdr->e_entry);
+
+ return loaded;
}