mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071)
Fix integer overflow in the :meth:`array.array.index` method on 64-bit Windows
for index larger than ``2**31``.
(cherry picked from commit 1d3dad5f96
)
Co-authored-by: WildCard65 <WildCard65@users.noreply.github.com>
This commit is contained in:
parent
cd696201ff
commit
92f8b480ba
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
Fix integer overflow in the :meth:`array.array.index` method on 64-bit Windows
|
||||||
|
for index larger than ``2**31``.
|
|
@ -1141,7 +1141,7 @@ array_array_index(arrayobject *self, PyObject *v)
|
||||||
cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
||||||
Py_DECREF(selfi);
|
Py_DECREF(selfi);
|
||||||
if (cmp > 0) {
|
if (cmp > 0) {
|
||||||
return PyLong_FromLong((long)i);
|
return PyLong_FromSsize_t(i);
|
||||||
}
|
}
|
||||||
else if (cmp < 0)
|
else if (cmp < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue