Fix pwndbg.auxv.get() (#2055)

pull/2056/head
Gulshan Singh 2 years ago committed by GitHub
parent 30ecebe7ee
commit 8a09a89c34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -121,7 +121,7 @@ class AUXV(Dict[str, Union[int, str]]):
@pwndbg.lib.cache.cache_until("objfile", "start")
def get() -> AUXV:
return use_info_auxv() or walk_stack() or Foo() # AUXV()
return use_info_auxv() or walk_stack() or AUXV()
def use_info_auxv() -> Optional[AUXV]:

Loading…
Cancel
Save