mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-1529: Interrupt emulator when decoding uninitialized memory
This commit is contained in:
parent
738e662e82
commit
4aa54dd1f9
25 changed files with 274 additions and 100 deletions
|
@ -802,8 +802,10 @@ public class Disassembler implements DisassemblerConflictHandler {
|
|||
disassembleInstructionBlock(block, blockMemBuffer, null, limit, null, false);
|
||||
}
|
||||
catch (Exception e) {
|
||||
Msg.error(this, "Pseudo block disassembly failure at " + blockMemBuffer.getAddress() +
|
||||
": " + e.getMessage(), e);
|
||||
String message = "Pseudo block disassembly failure at " + blockMemBuffer.getAddress() +
|
||||
": " + e.getMessage();
|
||||
Msg.error(this, message, e);
|
||||
reportMessage(message);
|
||||
}
|
||||
finally {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue