mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fixed integer overflow in array.buffer_info().
This commit is contained in:
parent
dcb6c88a24
commit
9e941d6373
1 changed files with 1 additions and 1 deletions
|
@ -1268,7 +1268,7 @@ array_array_buffer_info_impl(arrayobject *self)
|
|||
}
|
||||
PyTuple_SET_ITEM(retval, 0, v);
|
||||
|
||||
v = PyLong_FromLong((long)(Py_SIZE(self)));
|
||||
v = PyLong_FromSsize_t(Py_SIZE(self));
|
||||
if (v == NULL) {
|
||||
Py_DECREF(retval);
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue