Skip to content

Commit

Permalink
add break on basic block end for get_service() (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeggor committed Oct 8, 2024
1 parent 55ff835 commit ef4d5e1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions efiXplorer/efi_analysis_arm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,9 @@ json get_service(ea_t addr, uint8_t table_id) {
}
return s;
}
if (is_basic_block_end(insn, false)) {
break;
}
}
}

Expand Down

0 comments on commit ef4d5e1

Please sign in to comment.