Fixed new seemingly random segfaults, by moving the initialization of

delstr from initgc() into collect().  initgc() isn't called unless the
user explicitly imports gc, so can be used only for initialization of
user-visible module features; delstr needs to be initialized for proper
internal operation, whether or not gc is explicitly imported.

Bugfix candidate?  I don't know whether the new bug was backported to
2.2 already.
This commit is contained in:
Tim Peters 2003-04-05 17:15:44 +00:00
parent c377cbfdaf
commit 93ad66dea9
1 changed files with 11 additions and 8 deletions

View File

@ -59,8 +59,8 @@ static PyObject *garbage;
/* Python string to use if unhandled exception occurs */
static PyObject *gc_str;
/* Python string used to looked for __del__ attribute. */
static PyObject *delstr;
/* Python string used to look for __del__ attribute. */
static PyObject *delstr = NULL;
/* set for debugging information */
#define DEBUG_STATS (1<<0) /* print collection statistics */
@ -525,6 +525,12 @@ collect(int generation)
PyGC_Head finalizers;
PyGC_Head *gc;
if (delstr == NULL) {
delstr = PyString_InternFromString("__del__");
if (delstr == NULL)
Py_FatalError("gc couldn't allocate \"__del__\"");
}
if (debug & DEBUG_STATS) {
PySys_WriteStderr("gc: collecting generation %d...\n",
generation);
@ -969,9 +975,6 @@ initgc(void)
PyObject *m;
PyObject *d;
delstr = PyString_InternFromString("__del__");
if (!delstr)
return;
m = Py_InitModule4("gc",
GcMethods,
gc__doc__,