mirror of https://github.com/pwndbg/pwndbg.git
Fix try_free command: make addr argument required (#2499)
Fixes the following problem: ``` pwndbg> try_free TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType' > /root/pwndbg/pwndbg/commands/heap.py(1195)try_free() 1194 def try_free(addr: str | int) -> None: -> 1195 addr = int(addr) 1196 ```pull/2524/head
parent
3a34bbb6d4
commit
a42082b652
Loading…
Reference in new issue