Skip to content

Commit

Permalink
Merge pull request #311 from Coxxs/fix-ida-deadlock
Browse files Browse the repository at this point in the history
Fix IDA deadlock when time reaches `SQL_TIMEOUT_LIMIT`
  • Loading branch information
joxeankoret authored Aug 28, 2024
2 parents 232a272 + e3d4119 commit fb7caf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diaphora.py
Original file line number Diff line number Diff line change
Expand Up @@ -2049,7 +2049,7 @@ def add_matches_internal(
t = time.monotonic()
while self.continue_getting_sql_rows(i):
if time.monotonic() - t > self.timeout or cur_thread.timeout:
log_refresh(f"Timeout with heuristic '{cur_thread.name}'")
log(f"Timeout with heuristic '{cur_thread.name}'")
raise SystemExit()

i += 1
Expand Down

0 comments on commit fb7caf7

Please sign in to comment.