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:
parent
c377cbfdaf
commit
93ad66dea9
|
@ -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__,
|
||||
|
|
Loading…
Reference in New Issue