mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110)
This commit is contained in:
parent
a79f4c2195
commit
66bffd1663
5 changed files with 41 additions and 26 deletions
|
|
@ -386,7 +386,7 @@ def _close_stdin():
|
|||
|
||||
def spawnv_passfds(path, args, passfds):
|
||||
import _posixsubprocess
|
||||
passfds = sorted(passfds)
|
||||
passfds = tuple(sorted(map(int, passfds)))
|
||||
errpipe_read, errpipe_write = os.pipe()
|
||||
try:
|
||||
return _posixsubprocess.fork_exec(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue