Skip to content

Commit 07585c4

Browse files
committed
fix typo
1 parent bccabe9 commit 07585c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

angelheap/angelheap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ def unlinkable(chunkaddr,fd = None ,bk = None):
947947
next_prev_size = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)
948948
if not fd :
949949
cmd = "x/" + word + hex(chunkaddr + capsize*2)
950-
fd = int(gdb.execute(cmd,to_string=true).split(":")[1].strip(),16)
950+
fd = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)
951951
if not bk :
952952
cmd = "x/" + word + hex(chunkaddr + capsize*3)
953953
bk = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)

pwndbg/angelheap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ def unlinkable(chunkaddr,fd = None ,bk = None):
889889
next_prev_size = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)
890890
if not fd :
891891
cmd = "x/" + word + hex(chunkaddr + capsize*2)
892-
fd = int(gdb.execute(cmd,to_string=true).split(":")[1].strip(),16)
892+
fd = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)
893893
if not bk :
894894
cmd = "x/" + word + hex(chunkaddr + capsize*3)
895895
bk = int(gdb.execute(cmd,to_string=True).split(":")[1].strip(),16)

0 commit comments

Comments
 (0)