From 4cf96b9c87f3203944c49207bf48611c92e79071 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Thu, 22 Dec 2022 15:20:53 -0500 Subject: Fix getting constant data from HighLevelILConstData --- 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 b4bd9f42..fc9477cd 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -1407,7 +1407,7 @@ class HighLevelILConst(HighLevelILInstruction, Constant): class HighLevelILConstData(HighLevelILInstruction, Constant): @property def constant(self) -> 'databuffer.DataBuffer': - return self.function.source_function.view.get_constant_data(self._get_int(0)) + return self.function.source_function.view.get_constant_data(self.get_int(0)) @property def operands(self) -> List[HighLevelILOperandType]: -- cgit v1.3.1