Skip to content

Commit d8b60f8

Browse files
committed
Update binexport API
1 parent dcebcd0 commit d8b60f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bindiff/bindiff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def _map_diff_on_programs(self) -> None:
151151
# Within the context of the current function
152152
if f1.addr in self.primary_instruction_match[ins_f1.addr]:
153153
ins_f2_addr = self.primary_instruction_match[ins_f1.addr][f1.addr]
154-
ins_f2 = bb_f2[ins_f2_addr] # retrieve instruction in secondary basic block
154+
ins_f2 = bb_f2.uncached_instructions[ins_f2_addr] # retrieve instruction in secondary basic block
155155
ins_f1.match, ins_f2.match = ins_f2, ins_f1
156156

157157
@staticmethod

0 commit comments

Comments
 (0)