summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-12-07 20:00:04 (GMT)
committerGuido van Rossum <guido@python.org>2001-12-07 20:00:04 (GMT)
commitf70590f990e6b91c36c3aadd7da6fa6c0a9a5beb (patch)
treeaddcf11e7e8ea18da0d684fd7e10b8ebded86214 /Objects
parentc6259d73c225e659e00bb861ffb38b7878ab3f1a (diff)
downloadcpython-f70590f990e6b91c36c3aadd7da6fa6c0a9a5beb.zip
cpython-f70590f990e6b91c36c3aadd7da6fa6c0a9a5beb.tar.gz
cpython-f70590f990e6b91c36c3aadd7da6fa6c0a9a5beb.tar.bz2
_PyTuple_Resize(): this dumped core on tuple(globals()) for me. Turns
out the for loop at the end intended to zero out new items wasn't doing anything, because sv->ob_size was already equal to newsize. The fix slightly refactors the function, introducing a variable oldsize and doing away with sizediff (which was used only once), and using oldsize and newsize consistently. I also added comments explaining what the two for loops do. (Looking at the CVS annotation of this function, it's no miracle a bug crept in -- this has been patched by many different folks! :-)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/tupleobject.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 0b5507f..27598ed 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -598,7 +598,7 @@ _PyTuple_Resize(PyObject **pv, int newsize)
register PyTupleObject *v;
register PyTupleObject *sv;
int i;
- int sizediff;
+ int oldsize;
v = (PyTupleObject *) *pv;
if (v == NULL || v->ob_type != &PyTuple_Type ||
@@ -608,11 +608,11 @@ _PyTuple_Resize(PyObject **pv, int newsize)
PyErr_BadInternalCall();
return -1;
}
- sizediff = newsize - v->ob_size;
- if (sizediff == 0)
+ oldsize = v->ob_size;
+ if (oldsize == newsize)
return 0;
- if (v->ob_size == 0) {
+ if (oldsize == 0) {
/* Empty tuples are often shared, so we should never
resize them in-place even if we do own the only
(current) reference */
@@ -627,7 +627,8 @@ _PyTuple_Resize(PyObject **pv, int newsize)
#endif
_PyObject_GC_UNTRACK(v);
_Py_ForgetReference((PyObject *) v);
- for (i = newsize; i < v->ob_size; i++) {
+ /* DECREF items deleted by shrinkage */
+ for (i = newsize; i < oldsize; i++) {
Py_XDECREF(v->ob_item[i]);
v->ob_item[i] = NULL;
}
@@ -638,7 +639,8 @@ _PyTuple_Resize(PyObject **pv, int newsize)
return -1;
}
_Py_NewReference((PyObject *) sv);
- for (i = sv->ob_size; i < newsize; i++)
+ /* Zero out items added by growing */
+ for (i = oldsize; i < newsize; i++)
sv->ob_item[i] = NULL;
*pv = (PyObject *) sv;
_PyObject_GC_TRACK(sv);