We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 287f551 commit d8666b9Copy full SHA for d8666b9
1 file changed
diffrays/analyzer.py
@@ -37,7 +37,7 @@ def analyze_binary(db_path: str, version: str, debug: bool = False):
37
log.debug(f"Demangled Function: {name}")
38
39
# Convert generator to list for basic block count
40
- bb_count = db.functions.get_flowchart(func)
+ bb_count = len(db.functions.get_flowchart(func))
41
signature = db.functions.get_signature(func)
42
pseudo = db.functions.get_pseudocode(func)
43
if not pseudo:
0 commit comments