diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-01-17 18:44:51 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-01-17 18:44:51 -0500 |
| commit | ded271158000d7fa509f513b425d95390a7f2058 (patch) | |
| tree | 5c1ad94da47d42d0f36f2dcb7f22f6beb521bb28 /python/lowlevelil.py | |
| parent | 1f6c09e54ab53403fe0236c46f69b896713abddc (diff) | |
Add missing Python APIs
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 419e8513..29b46b65 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -187,7 +187,9 @@ class LowLevelILInstruction(object): value = tokens[i].value size = tokens[i].size operand = tokens[i].operand - result.append(function.InstructionTextToken(token_type, text, value, size, operand)) + context = tokens[i].context + address = tokens[i].address + result.append(function.InstructionTextToken(token_type, text, value, size, operand, context, address)) core.BNFreeInstructionText(tokens, count.value) return result |
