Skip to content

Commit 29fb02f

Browse files
committed
Merge branch 'beta' into dev
2 parents 241b139 + d7a7376 commit 29fb02f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 2
55
build:
66
os: ubuntu-22.04
77
tools:
8-
python: "3"
8+
python: "3.12"
99

1010
sphinx:
1111
configuration: docs/source/conf.py

pwnlib/tubes/process.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ def libs(self):
13261326
space.
13271327
"""
13281328
from pwnlib.util.proc import memory_maps
1329-
maps_raw = memory_maps(self.pid)
1329+
maps_raw = self.poll() is not None and memory_maps(self.pid)
13301330

13311331
if not maps_raw:
13321332
import pwnlib.elf.elf

0 commit comments

Comments
 (0)