We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c02190b + 9472ec1 commit d7a7376Copy full SHA for d7a7376
.readthedocs.yaml
@@ -5,7 +5,7 @@ version: 2
5
build:
6
os: ubuntu-22.04
7
tools:
8
- python: "3"
+ python: "3.12"
9
10
sphinx:
11
configuration: docs/source/conf.py
pwnlib/tubes/process.py
@@ -1326,7 +1326,7 @@ def libs(self):
1326
space.
1327
"""
1328
from pwnlib.util.proc import memory_maps
1329
- maps_raw = memory_maps(self.pid)
+ maps_raw = self.poll() is not None and memory_maps(self.pid)
1330
1331
if not maps_raw:
1332
import pwnlib.elf.elf
0 commit comments