Commit 8bb6d603 authored by Stefan Behnel's avatar Stefan Behnel

Fix wrong variable usage in __Pyx_PyIndex_AsSsize_t().

Closes #2616.
parent 7b4079c5
...@@ -376,7 +376,7 @@ static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { ...@@ -376,7 +376,7 @@ static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
if (sizeof(Py_ssize_t) >= sizeof(long)) if (sizeof(Py_ssize_t) >= sizeof(long))
return PyInt_AS_LONG(b); return PyInt_AS_LONG(b);
else else
return PyInt_AsSsize_t(x); return PyInt_AsSsize_t(b);
} }
#endif #endif
if (likely(PyLong_CheckExact(b))) { if (likely(PyLong_CheckExact(b))) {
......
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