Merge pull request #1929 from xclusivor/master
Remove semicolons in python files
This commit is contained in:
@@ -36,7 +36,7 @@ def hook_code(uc, address, size, user_data):
|
||||
def hook_code64(uc, address, size, user_data):
|
||||
print(">>> Tracing instruction at 0x%x, instruction size = 0x%x" %(address, size))
|
||||
rip = uc.reg_read(UC_X86_REG_RIP)
|
||||
print(">>> RIP is 0x%x" %rip);
|
||||
print(">>> RIP is 0x%x" %rip)
|
||||
|
||||
|
||||
# callback for tracing invalid memory access (READ or WRITE)
|
||||
|
||||
@@ -74,7 +74,7 @@ def read_string(uc, address):
|
||||
def hook_intr(uc, intno, user_data):
|
||||
# only handle Linux syscall
|
||||
if intno != 0x80:
|
||||
print("got interrupt %x ???" %intno);
|
||||
print("got interrupt %x ???" %intno)
|
||||
uc.emu_stop()
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user