From a6eac8aa8317a763427b1f2f01bbf49c24c53e1a Mon Sep 17 00:00:00 2001 From: gaasedelen Date: Sun, 1 Oct 2017 12:20:49 -0400 Subject: [PATCH] hotfix for IDA 7 users running with AUTOIMPORT_COMPAT_IDA695 = NO --- plugin/lighthouse/metadata.py | 2 +- plugin/lighthouse_plugin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/lighthouse/metadata.py b/plugin/lighthouse/metadata.py index f67149a4..f3d06d81 100644 --- a/plugin/lighthouse/metadata.py +++ b/plugin/lighthouse/metadata.py @@ -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): diff --git a/plugin/lighthouse_plugin.py b/plugin/lighthouse_plugin.py index f02b4951..a85f2346 100644 --- a/plugin/lighthouse_plugin.py +++ b/plugin/lighthouse_plugin.py @@ -20,7 +20,7 @@ # IDA Plugin #------------------------------------------------------------------------------ -PLUGIN_VERSION = "0.6.0" +PLUGIN_VERSION = "0.6.1" AUTHORS = "Markus Gaasedelen" DATE = "2017"