summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-13 18:10:10 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-13 18:10:10 (GMT)
commitdf6a6494cbb2830e2a0cc255e2b4b7617c298ca9 (patch)
tree9ba907de88492e7f19cc2ed7e1f7f9ca88590027 /Python
parentbfa5f0bb5df627e61b8d5574365b98bdee78398c (diff)
downloadcpython-df6a6494cbb2830e2a0cc255e2b4b7617c298ca9.zip
cpython-df6a6494cbb2830e2a0cc255e2b4b7617c298ca9.tar.gz
cpython-df6a6494cbb2830e2a0cc255e2b4b7617c298ca9.tar.bz2
Move/copy assert for tstate != NULL before first use.
Verify that PyEval_Get{Globals,Locals} returned valid pointers. Klocwork 231-232
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index cd8ff9b..99e87e8 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2623,6 +2623,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
return NULL;
}
+ assert(tstate != NULL);
assert(globals != NULL);
f = PyFrame_New(tstate, co, globals, locals);
if (f == NULL)
@@ -3636,6 +3637,7 @@ fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
PyFrame_New() that doesn't take locals, but does
take builtins without sanity checking them.
*/
+ assert(tstate != NULL);
f = PyFrame_New(tstate, co, globals, NULL);
if (f == NULL)
return NULL;
@@ -3648,7 +3650,6 @@ fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
fastlocals[i] = *stack++;
}
retval = PyEval_EvalFrameEx(f,0);
- assert(tstate != NULL);
++tstate->recursion_depth;
Py_DECREF(f);
--tstate->recursion_depth;
@@ -4130,6 +4131,11 @@ exec_statement(PyFrameObject *f, PyObject *prog, PyObject *globals,
locals = PyEval_GetLocals();
plain = 1;
}
+ if (!globals || !locals) {
+ PyErr_SetString(PyExc_SystemError,
+ "globals and locals cannot be NULL");
+ return -1;
+ }
}
else if (locals == Py_None)
locals = globals;