Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
11f4326c
Kaydet (Commit)
11f4326c
authored
Kas 20, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28732: Fix crash in os.spawnv() with no elements in args
Prevents crashes in some other posixmodule.c functions
üst
ca4b252f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
NEWS
Misc/NEWS
+2
-0
posixmodule.c
Modules/posixmodule.c
+16
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
11f4326c
...
...
@@ -121,6 +121,8 @@ Core and Builtins
Library
-------
- Issue #28732: Fix crash in os.spawnv() with no elements in args
- Issue #28485: Always raise ValueError for negative
compileall.compile_dir(workers=...) parameter, even when multithreading is
unavailable.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
11f4326c
...
...
@@ -5186,6 +5186,16 @@ os_spawnv_impl(PyObject *module, int mode, PyObject *path, PyObject *argv)
"spawnv() arg 2 must be a tuple or list"
);
return
NULL
;
}
#ifdef MS_WINDOWS
/* Avoid changing behavior in maintenance release, but
the previous Windows behavior was to crash, so this
is a "compatible" improvement. */
if
(
argc
==
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"spawnv() arg 2 cannot be empty"
);
return
NULL
;
}
#endif
argvlist
=
PyMem_NEW
(
char
*
,
argc
+
1
);
if
(
argvlist
==
NULL
)
{
...
...
@@ -5207,7 +5217,9 @@ os_spawnv_impl(PyObject *module, int mode, PyObject *path, PyObject *argv)
mode
=
_P_OVERLAY
;
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
spawnval
=
_spawnv
(
mode
,
path_char
,
argvlist
);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
free_string_array
(
argvlist
,
argc
);
...
...
@@ -5297,7 +5309,9 @@ os_spawnve_impl(PyObject *module, int mode, PyObject *path, PyObject *argv,
mode
=
_P_OVERLAY
;
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
spawnval
=
_spawnve
(
mode
,
path_char
,
argvlist
,
envlist
);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
if
(
spawnval
==
-
1
)
...
...
@@ -7022,7 +7036,9 @@ os_waitpid_impl(PyObject *module, Py_intptr_t pid, int options)
do
{
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
res
=
_cwait
(
&
status
,
pid
,
options
);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
}
while
(
res
<
0
&&
errno
==
EINTR
&&
!
(
async_err
=
PyErr_CheckSignals
()));
if
(
res
<
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment