mirror of
https://github.com/mandiant/capa.git
synced 2026-02-04 11:07:53 -08:00
fix typo bug
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user