mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes
(Contributed by Dima Dorfman)
This commit is contained in:
parent
410eb84a5d
commit
75ccea3777
5 changed files with 8 additions and 17 deletions
|
|
@ -51,8 +51,7 @@ gen_iternext(PyGenObject *gen)
|
|||
* may keep a chain of frames alive or it could create a reference
|
||||
* cycle. */
|
||||
assert(f->f_back != NULL);
|
||||
Py_DECREF(f->f_back);
|
||||
f->f_back = NULL;
|
||||
Py_CLEAR(f->f_back);
|
||||
|
||||
/* If the generator just returned (as opposed to yielding), signal
|
||||
* that the generator is exhausted. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue