Skip to content

Commit

Permalink
GP-0: Re-fix offcut dissembly after merging GP-4278
Browse files Browse the repository at this point in the history
  • Loading branch information
nsadeveloper789 committed Feb 16, 2024
1 parent 23354c2 commit 3e676b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public boolean canInterpret(TraceObject newFocus, long snap) {
}

protected boolean isCancelSilently(Address start, long snap) {
return trace.getCodeManager().definedUnits().containsAddress(snap, start);
return trace.getCodeManager().instructions().getAt(snap, start) != null;
}

protected Collection<DisassemblyInject> getDisassemblyInjections(TraceObject object) {
Expand Down

0 comments on commit 3e676b4

Please sign in to comment.