Correctly cast the return value of realloc.

This commit is contained in:
Martin v. Löwis 2000-09-15 07:32:39 +00:00
parent 66de5497c5
commit 3cd760425f
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ _PyTuple_Resize(PyObject **pv, int newsize, int last_is_sticky)
#ifdef WITH_CYCLE_GC
PyGC_Head *g = PyObject_AS_GC((PyObject *)v);
PyObject_GC_Fini((PyObject *)v);
g = (PyTupleObject *)
g = (PyGC_Head *)
PyObject_REALLOC((char *)g, sizeof(PyTupleObject)
+ PyGC_HEAD_SIZE
+ newsize * sizeof(PyObject *));