Kaydet (Commit) b8022c8a authored tarafından Matthias Klose's avatar Matthias Klose

Merged revisions 79096 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79096 | matthias.klose | 2010-03-19 15:45:06 +0100 (Fr, 19 Mär 2010) | 2 lines

  - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument.
........
üst e0bc5dab
......@@ -511,6 +511,9 @@ class URandomTests (unittest.TestCase):
except NotImplementedError:
pass
def test_execvpe_with_bad_arglist(self):
self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
class Win32ErrorTests(unittest.TestCase):
def test_rename(self):
self.assertRaises(WindowsError, os.rename, test_support.TESTFN, test_support.TESTFN+".bak")
......
......@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
- Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument.
- Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox
with Tcl/Tk-8.5.
......
......@@ -2979,6 +2979,11 @@ posix_execv(PyObject *self, PyObject *args)
PyMem_Free(path);
return NULL;
}
if (argc < 1) {
PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty");
PyMem_Free(path);
return NULL;
}
argvlist = PyMem_NEW(char *, argc+1);
if (argvlist == NULL) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment