From 7829801632556958526537447495764541534147 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 14 Feb 2023 17:48:23 -0500 Subject: Add DisassemblySettings to LLIL::GetExprText To make possible the next commit --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 0b112331..23830acb 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -549,7 +549,7 @@ class LowLevelILInstruction(BaseILInstruction): assert self.function.arch is not None, f"self.function.arch is None" tokens = ctypes.POINTER(core.BNInstructionTextToken)() result = core.BNGetLowLevelILExprText( - self.function.handle, self.function.arch.handle, self.expr_index, tokens, count + self.function.handle, self.function.arch.handle, self.expr_index, None, tokens, count ) assert result, "core.BNGetLowLevelILExprText returned False" try: -- cgit v1.3.1