From fc09cc621d03affbad103b69f5cd1f9428fd4d97 Mon Sep 17 00:00:00 2001 From: NAKATSURU You Date: Wed, 3 Apr 2024 11:49:32 +0900 Subject: [PATCH] Fix UnmatchedFunctionsChooserPrimary::get_ea Fixed navigation bug when double-clicking on Primary Unmatched function address --- ida/unmatched_functions_chooser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ida/unmatched_functions_chooser.cc b/ida/unmatched_functions_chooser.cc index 42bb16b1..8b3cea07 100644 --- a/ida/unmatched_functions_chooser.cc +++ b/ida/unmatched_functions_chooser.cc @@ -41,7 +41,7 @@ size_t UnmatchedFunctionsChooserPrimary::get_count() const { } ea_t UnmatchedFunctionsChooserPrimary::get_ea(size_t n) const { - return Plugin::instance()->results()->GetMatchDescription(n).address_primary; + return Plugin::instance()->results()->GetUnmatchedDescriptionPrimary(n).address; } Results::UnmatchedDescription UnmatchedFunctionsChooserPrimary::GetDescription(