Commit 9e941d63 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Fixed integer overflow in array.buffer_info().

parent dcb6c88a
...@@ -1268,7 +1268,7 @@ array_array_buffer_info_impl(arrayobject *self) ...@@ -1268,7 +1268,7 @@ array_array_buffer_info_impl(arrayobject *self)
} }
PyTuple_SET_ITEM(retval, 0, v); PyTuple_SET_ITEM(retval, 0, v);
v = PyLong_FromLong((long)(Py_SIZE(self))); v = PyLong_FromSsize_t(Py_SIZE(self));
if (v == NULL) { if (v == NULL) {
Py_DECREF(retval); Py_DECREF(retval);
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment