mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
GH-96569: Add two NULL checks to avoid undefined behavior. (GH-96585)
This commit is contained in:
parent
cd0ff9bd14
commit
222f10ca2d
3 changed files with 13 additions and 10 deletions
|
@ -2195,15 +2195,12 @@ _PyInterpreterFrame *
|
|||
_PyThreadState_PushFrame(PyThreadState *tstate, size_t size)
|
||||
{
|
||||
assert(size < INT_MAX/sizeof(PyObject *));
|
||||
PyObject **base = tstate->datastack_top;
|
||||
PyObject **top = base + size;
|
||||
if (top >= tstate->datastack_limit) {
|
||||
base = push_chunk(tstate, (int)size);
|
||||
if (_PyThreadState_HasStackSpace(tstate, (int)size)) {
|
||||
_PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->datastack_top;
|
||||
tstate->datastack_top += size;
|
||||
return res;
|
||||
}
|
||||
else {
|
||||
tstate->datastack_top = top;
|
||||
}
|
||||
return (_PyInterpreterFrame *)base;
|
||||
return (_PyInterpreterFrame *)push_chunk(tstate, (int)size);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue