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"