Skip to content

Commit

Permalink
hotfix for IDA 7 users running with AUTOIMPORT_COMPAT_IDA695 = NO
Browse files Browse the repository at this point in the history
  • Loading branch information
gaasedelen committed Oct 1, 2017
1 parent a149769 commit a6eac8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/lighthouse/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def _refresh_nodes(self):
if using_ida7api:
for edge_dst in idautils.CodeRefsFrom(edge_src, True):
edge_function = idaapi.get_func(edge_dst)
if edge_function and edge_function.start_ea == function.startEA: # NOTE: start_ea vs startEA
if edge_function and edge_function.start_ea == function.start_ea: # NOTE: start_ea vs startEA
function_metadata.edges.append((edge_src, edge_dst))
else:
for edge_dst in idautils.CodeRefsFrom(edge_src, True):
Expand Down
2 changes: 1 addition & 1 deletion plugin/lighthouse_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# IDA Plugin
#------------------------------------------------------------------------------

PLUGIN_VERSION = "0.6.0"
PLUGIN_VERSION = "0.6.1"
AUTHORS = "Markus Gaasedelen"
DATE = "2017"

Expand Down

0 comments on commit a6eac8a

Please sign in to comment.