From 6ce35d0e771140d193ada89bc300e460b5931c18 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Thu, 11 May 2023 15:06:38 -0400 Subject: Fix HLILForSSA.body property --- python/highlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index ba8a75ce..9ad6cb2f 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -1083,7 +1083,7 @@ class HighLevelILForSsa(HighLevelILInstruction, Loop, SSA): @property def body(self) -> HighLevelILInstruction: - return self.get_expr(3) + return self.get_expr(4) @property def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: -- cgit v1.3.1