Skip to content
Snippets Groups Projects
Commit 8ea2b720 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

rida fix for missing .init section

Former-commit-id: 2a457d4ee1f84a9ae9bbf9483fb959c03b7e1759
parent f8f76cee
No related branches found
No related tags found
No related merge requests found
......@@ -267,6 +267,8 @@ class CreateFunctions_t
void addSectionToSccs(const string &sec_name)
{
const auto sec=exeio.sections[sec_name];
if(sec==nullptr)
return;
const auto range=Range_t(sec->get_address(), sec->get_address()+sec->get_size());
const auto ranges=RangeSet_t({range});
sccs.insert(ranges);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment