Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit 22b8285

Browse files
committed
Update disassembler.py
1 parent 243fafb commit 22b8285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/virustotal/vt_ida/disassembler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def wildcard_instruction(addr):
6969
mask = ida_idp.ph_calcrel(addr)
7070
# IDA > 7.5 return a list, < 7.5 returns a byte object
7171
if idaapi.IDA_SDK_VERSION >= 750:
72-
mask_bytes = mask[0] # mask_length = mask[1]
72+
mask_bytes = mask[0]
7373
mask_str = binascii.hexlify(mask_bytes).decode('utf-8')
7474
else:
7575
mask_str = binascii.hexlify(mask).decode('utf-8')

0 commit comments

Comments
 (0)