Skip to content

Commit

Permalink
Fix typo HighLevelILIntrinsicSsa's dest_memory and src_memory pro…
Browse files Browse the repository at this point in the history
…perties that was preventing them from returning the right values

See Vector35#4769 (comment) for more context.
  • Loading branch information
ElykDeer committed Nov 29, 2023
1 parent 66fe34a commit 7d908fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/highlevelil.py
Original file line number Diff line number Diff line change
Expand Up @@ -2067,11 +2067,11 @@ def params(self) -> List[HighLevelILInstruction]:

@property
def dest_memory(self) -> int:
return self.get_int(2)
return self.get_int(3)

@property
def src_memory(self) -> int:
return self.get_int(3)
return self.get_int(4)

@property
def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]:
Expand Down

0 comments on commit 7d908fc

Please sign in to comment.