diff options
| author | Glenn Smith <glenn@vector35.com> | 2023-02-14 17:48:23 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-02-14 17:56:54 -0500 |
| commit | 7829801632556958526537447495764541534147 (patch) | |
| tree | 07e532e94d19d6733257a517adfef1f9b3f58093 /python/lowlevelil.py | |
| parent | 0a41de02d27174ecb9d2f6ae439267b9428f04ea (diff) | |
Add DisassemblySettings to LLIL::GetExprText
To make possible the next commit
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
