fix typo bug

This commit is contained in:
Yacine Elhamer
2023-06-14 09:02:18 +01:00
parent 23dee61389
commit 18715dbe2e

View File

@@ -25,7 +25,7 @@ logger = logging.getLogger(__name__)
def extract_call_features(calls: List[Dict], th: ThreadHandle) -> Iterator[Tuple[Feature, Address]]:
tid = str(th.tid)
for call in calls:
if call["thead_id"] != tid:
if call["thread_id"] != tid:
continue
yield API(call["api"]), int(call["caller"], 16)