Update for compatibility with Python 3.12 and Radare 6.0.2

Tested with the following workflows:
vtable diff
deep trace -> vtable alignment
This commit is contained in:
Flawed
2025-09-01 23:19:49 -07:00
parent 1761155281
commit acccb1cc7d
6 changed files with 22 additions and 24 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ def full_similarity_matrix(
# Now we copy this similarity value for all opcodes in the new
# switch case
for op in new_data["opcodes"]:
similarities.append(score)
similarities.append(float(score))
# Now we copy this similarity mapping for all opcodes in the old
# switch case
for op in old_data["opcodes"]: