summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-11 23:05:40 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-11 23:05:40 (GMT)
commitec74f2fda79663d9e61d704315b737e262b83618 (patch)
tree5d26976de4c27c1acf0d3b3c43b88c55860a0bf3 /Modules
parent42f08ac1e303117ea789a8ad2a1326db75f923f8 (diff)
downloadcpython-ec74f2fda79663d9e61d704315b737e262b83618.zip
cpython-ec74f2fda79663d9e61d704315b737e262b83618.tar.gz
cpython-ec74f2fda79663d9e61d704315b737e262b83618.tar.bz2
Add more missing PyErr_NoMemory() after failled memory allocs
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_tkinter.c2
-rw-r--r--Modules/posixmodule.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index b9dc179..4e6bcbc 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -2050,7 +2050,7 @@ Tkapp_CreateCommand(PyObject *_self, PyObject *args)
data = PyMem_NEW(PythonCmd_ClientData, 1);
if (!data)
- return NULL;
+ return PyErr_NoMemory();
Py_XINCREF(self);
Py_XINCREF(func);
data->self = _self;
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 9dea4b5..c6e1a87 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -2251,7 +2251,7 @@ posix_execv(PyObject *self, PyObject *args)
argvlist = PyMem_NEW(char *, argc+1);
if (argvlist == NULL) {
PyMem_Free(path);
- return NULL;
+ return PyErr_NoMemory();
}
for (i = 0; i < argc; i++) {
if (!PyArg_Parse((*getitem)(argv, i), "et",
@@ -2480,7 +2480,7 @@ posix_spawnv(PyObject *self, PyObject *args)
argvlist = PyMem_NEW(char *, argc+1);
if (argvlist == NULL) {
PyMem_Free(path);
- return NULL;
+ return PyErr_NoMemory();
}
for (i = 0; i < argc; i++) {
if (!PyArg_Parse((*getitem)(argv, i), "et",