mirror of https://github.com/python/cpython
memset() hunt continuing. This is a net win.
This commit is contained in:
parent
cc45466b8f
commit
7cdf3e8a8a
|
@ -27,6 +27,7 @@ PyObject *
|
||||||
PyTuple_New(register int size)
|
PyTuple_New(register int size)
|
||||||
{
|
{
|
||||||
register PyTupleObject *op;
|
register PyTupleObject *op;
|
||||||
|
int i;
|
||||||
if (size < 0) {
|
if (size < 0) {
|
||||||
PyErr_BadInternalCall();
|
PyErr_BadInternalCall();
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -68,7 +69,8 @@ PyTuple_New(register int size)
|
||||||
if (op == NULL)
|
if (op == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
memset(op->ob_item, 0, sizeof(*op->ob_item) * size);
|
for (i=0; i < size; i++)
|
||||||
|
op->ob_item[i] = NULL;
|
||||||
#if MAXSAVESIZE > 0
|
#if MAXSAVESIZE > 0
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
free_tuples[0] = op;
|
free_tuples[0] = op;
|
||||||
|
|
Loading…
Reference in New Issue