From 486a019282443ae5429b3c42ae132fe11f4f017f Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 8 Dec 2021 21:43:12 -0500 Subject: Fix a bunch of core function calls with bad args --- 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 4837323c..4298e91f 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -2171,7 +2171,7 @@ class HighLevelILFunction: @root.setter def root(self, value:HighLevelILInstruction) -> None: - core.BNSetHighLevelILRootExpr(value.expr_index) + core.BNSetHighLevelILRootExpr(self.handle, value.expr_index) def _basic_block_list(self): count = ctypes.c_ulonglong() -- cgit v1.3.1