diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-12 16:11:39 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-12 16:11:39 +0000 |
commit | 276887b16dc86e3423760c6ed9353591708fba17 (patch) | |
tree | 04e9896ffc00c0291959b4be71a83273e790b4ad /Python/pystate.c | |
parent | f567ca3e1ae851ea6e7418da3df47e034841a08d (diff) | |
download | cpython-git-276887b16dc86e3423760c6ed9353591708fba17.tar.gz |
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167.
Will backport.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index cc25e3ed38..086789d355 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -68,6 +68,7 @@ PyInterpreterState_New(void) Py_FatalError("Can't initialize threads for interpreter"); #endif interp->modules = NULL; + interp->modules_reloading = NULL; interp->sysdict = NULL; interp->builtins = NULL; interp->tstate_head = NULL; @@ -107,6 +108,7 @@ PyInterpreterState_Clear(PyInterpreterState *interp) Py_CLEAR(interp->codec_search_cache); Py_CLEAR(interp->codec_error_registry); Py_CLEAR(interp->modules); + Py_CLEAR(interp->modules_reloading); Py_CLEAR(interp->sysdict); Py_CLEAR(interp->builtins); } |