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:
@@ -72,8 +72,7 @@ class BlockDict(dict):
|
||||
).splitlines()
|
||||
missing_blocks = [json.loads(block_json) for block_json in block_json_list]
|
||||
additional_blocks = {
|
||||
missing_block[0]["offset"]: missing_block
|
||||
for missing_block in missing_blocks
|
||||
missing_block[0]["addr"]: missing_block for missing_block in missing_blocks
|
||||
}
|
||||
self.update(additional_blocks)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user