mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-09-24 02:00:05 +00:00
pre-parse section names and flag debug info sections
This commit is contained in:
committed by
Ryan Fleury
parent
3224c5e0aa
commit
80967fac12
@@ -2934,12 +2934,9 @@ THREAD_POOL_TASK_FUNC(lnk_push_dbi_sec_contrib_task)
|
||||
for (U64 sect_idx = 0; sect_idx < obj->header.section_count_no_null; sect_idx += 1) {
|
||||
COFF_SectionHeader *obj_sect_header = &obj_section_table[sect_idx];
|
||||
|
||||
if (obj_sect_header->flags & COFF_SectionFlag_LnkRemove) {
|
||||
continue;
|
||||
}
|
||||
if (lnk_is_coff_section_debug(obj, sect_idx)) {
|
||||
continue;
|
||||
}
|
||||
if (obj_sect_header->flags & COFF_SectionFlag_LnkInfo) { continue; }
|
||||
if (obj_sect_header->flags & COFF_SectionFlag_LnkRemove) { continue; }
|
||||
if (obj_sect_header->flags & LNK_SECTION_FLAG_DEBUG_INFO) { continue; }
|
||||
|
||||
U64 sect_number;
|
||||
String8 sect_data;
|
||||
|
||||
Reference in New Issue
Block a user