Skip to content

Commit f0880bd

Browse files
committed
fix: removed duplicates from matchfunctions
1 parent 3fb3b0b commit f0880bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

revengai/features/match_functions/match_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ def match_functions(self, bv: BinaryView, options: Dict[str, Any]) -> List[Dict]
140140
raise Exception("Analysis not found. Please choose one using 'Choose Source' feature.")
141141

142142
analyzed_functions = RE_analyze_functions(self.path, binary_id).json()["functions"]
143-
function_ids = [func["function_id"] for func in analyzed_functions]
143+
function_ids = []
144144

145-
log_info(f"RevEng.AI | Found {len(function_ids)} functions to match")
145+
log_info(f"RevEng.AI | Found {len(analyzed_functions)} analyzed functions")
146146

147147
functions = bv.functions
148148
len_functions = len(functions)

0 commit comments

Comments
 (0)