summaryrefslogtreecommitdiffstats
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
parent42f08ac1e303117ea789a8ad2a1326db75f923f8 (diff)
downloadcpython-ec74f2fda79663d9e61d704315b737e262b83618.zip
cpython-ec74f2fda79663d9e61d704315b737e262b83618.tar.gz
cpython-ec74f2fda79663d9e61d704315b737e262b83618.tar.bz2
Add more missing PyErr_NoMemory() after failled memory allocs
-rw-r--r--Modules/_tkinter.c2
-rw-r--r--Modules/posixmodule.c4
-rw-r--r--Objects/unicodeobject.c2
3 files changed, 4 insertions, 4 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",
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 6a358da..14318f6 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -6661,7 +6661,7 @@ unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (pnew->str == NULL) {
_Py_ForgetReference((PyObject *)pnew);
PyObject_Del(pnew);
- return NULL;
+ return PyErr_NoMemory();
}
Py_UNICODE_COPY(pnew->str, tmp->str, n+1);
pnew->length = n;