summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-04-13 17:15:47 +0000
committerFred Drake <fdrake@acm.org>2001-04-13 17:15:47 +0000
commit2a5a5ca012fed6f1224ad225dd7e82e8b6448cd0 (patch)
treeddf41c0fe2e07ea32f5f5ea7d38e31130b368e49 /Modules/_weakref.c
parentSlight adaptation of Michael Hudson's patch to test PyDict_Next() (diff)
downloadcpython-2a5a5ca012fed6f1224ad225dd7e82e8b6448cd0.tar.gz
cpython-2a5a5ca012fed6f1224ad225dd7e82e8b6448cd0.tar.bz2
cpython-2a5a5ca012fed6f1224ad225dd7e82e8b6448cd0.zip
cleanup_helper(): Make sure we invalidate all reference objects
before calling any callbacks. This is important since the callback objects only look at themselves to determine that they are invalide. This change avoids a segfault when callbacks use a different reference to an object in the process of being deallocated. This fixes SF bug #415660.
Diffstat (limited to 'Modules/_weakref.c')
-rw-r--r--Modules/_weakref.c47
1 files changed, 41 insertions, 6 deletions
diff --git a/Modules/_weakref.c b/Modules/_weakref.c
index 399b4fe67b5..71fe5a3ac4b 100644
--- a/Modules/_weakref.c
+++ b/Modules/_weakref.c
@@ -740,15 +740,22 @@ cleanup_helper(PyObject *object)
return;
}
list = GET_WEAKREFS_LISTPTR(object);
- while (*list != NULL) {
- PyWeakReference *current = *list;
- PyObject *callback = current->wr_callback;
+ /* Remove the callback-less basic and proxy references */
+ if (*list != NULL && (*list)->wr_callback == NULL) {
+ clear_weakref(*list);
+ if (*list != NULL && (*list)->wr_callback == NULL)
+ clear_weakref(*list);
+ }
+ if (*list != NULL) {
+ int count = getweakrefcount(*list);
- Py_XINCREF(callback);
- clear_weakref(current);
- if (callback != NULL) {
+ if (count == 1) {
+ PyWeakReference *current = *list;
+ PyObject *callback = current->wr_callback;
PyObject *cbresult;
+ Py_INCREF(callback);
+ clear_weakref(current);
cbresult = PyObject_CallFunction(callback, "O", current);
if (cbresult == NULL)
PyErr_WriteUnraisable(callback);
@@ -756,6 +763,34 @@ cleanup_helper(PyObject *object)
Py_DECREF(cbresult);
Py_DECREF(callback);
}
+ else {
+ PyObject *tuple = PyTuple_New(count * 2);
+ PyWeakReference *current = *list;
+ int i = 0;
+
+ for (i = 0; i < count; ++i) {
+ PyWeakReference *next = current->wr_next;
+
+ Py_INCREF(current);
+ PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current);
+ PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback);
+ current->wr_callback = NULL;
+ next = current->wr_next;
+ clear_weakref(current);
+ current = next;
+ }
+ for (i = 0; i < count; ++i) {
+ PyObject *current = PyTuple_GET_ITEM(tuple, i * 2);
+ PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
+ PyObject *cbresult = PyObject_CallFunction(callback, "O",
+ current);
+ if (cbresult == NULL)
+ PyErr_WriteUnraisable(callback);
+ else
+ Py_DECREF(cbresult);
+ }
+ Py_DECREF(tuple);
+ }
}
return;
}