diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-11-20 02:53:36 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-11-20 02:53:36 (GMT) |
commit | 6f33e294e5575c86b6bb763f38e6f2f2ee357d1f (patch) | |
tree | 99c4e305257830126fe36679614d8a91056aef56 /Modules/posixmodule.c | |
parent | 1325ee0938be932b08bc2290389f82b17d505b2a (diff) | |
parent | 859fd7bd7af90ce9a7f3a3184f2fce83013e0a96 (diff) | |
download | cpython-6f33e294e5575c86b6bb763f38e6f2f2ee357d1f.zip cpython-6f33e294e5575c86b6bb763f38e6f2f2ee357d1f.tar.gz cpython-6f33e294e5575c86b6bb763f38e6f2f2ee357d1f.tar.bz2 |
Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 21caa6b..ee85219 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5042,6 +5042,11 @@ os_spawnv_impl(PyObject *module, int mode, path_t *path, PyObject *argv) "spawnv() arg 2 must be a tuple or list"); return NULL; } + if (argc == 0) { + PyErr_SetString(PyExc_ValueError, + "spawnv() arg 2 cannot be empty"); + return NULL; + } argvlist = PyMem_NEW(EXECV_CHAR *, argc+1); if (argvlist == NULL) { @@ -5127,6 +5132,11 @@ os_spawnve_impl(PyObject *module, int mode, path_t *path, PyObject *argv, "spawnve() arg 2 must be a tuple or list"); goto fail_0; } + if (argc == 0) { + PyErr_SetString(PyExc_ValueError, + "spawnve() arg 2 cannot be empty"); + goto fail_0; + } if (!PyMapping_Check(env)) { PyErr_SetString(PyExc_TypeError, "spawnve() arg 3 must be a mapping object"); |