summaryrefslogtreecommitdiff
path: root/python/examples/jump_table.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-01-07 16:08:08 -0500
committerPeter LaFosse <peter@vector35.com>2017-01-07 16:08:08 -0500
commit9d1cac8ee55553cdb20c36deb3b15c9219b02d9b (patch)
tree1b3297c8ca4d7b58341095567173b2fff89e1ed2 /python/examples/jump_table.py
parent27911e9d6625d8f8acf900a4753c1833dd96ffe0 (diff)
More fixes for refactor
Diffstat (limited to 'python/examples/jump_table.py')
-rw-r--r--python/examples/jump_table.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/examples/jump_table.py b/python/examples/jump_table.py
index f24eea12..439e2ab6 100644
--- a/python/examples/jump_table.py
+++ b/python/examples/jump_table.py
@@ -21,7 +21,7 @@
# This plugin will attempt to resolve simple jump tables (an array of code pointers) and add the destinations
# as indirect branch targets so that the flow graph reflects the jump table's control flow.
from binaryninja.plugin import PluginCommand
-from binaryninja.enum import InstructionTextTokenType
+from binaryninja.enums import InstructionTextTokenType
import struct
@@ -50,7 +50,7 @@ def find_jump_table(bv, addr):
# Collect the branch targets for any tables referenced by the clicked instruction
branches = []
for token in tokens:
- if token.type == InstructionTextTokenType.PossibleAddressToken: # Table addresses will be a "possible address" token
+ if InstructionTextTokenType(token.type) == InstructionTextTokenType.PossibleAddressToken: # Table addresses will be a "possible address" token
tbl = token.value
print "Found possible table at 0x%x" % tbl
i = 0