(backport from rev. 59224)
else {
if (ep->me_hash == hash) {
startkey = ep->me_key;
- Py_INCREF(startkey);
+ Py_INCREF(startkey);
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
- Py_DECREF(startkey);
+ Py_DECREF(startkey);
if (cmp < 0)
return NULL;
if (ep0 == mp->ma_table && ep->me_key == startkey) {
return ep;
if (ep->me_hash == hash && ep->me_key != dummy) {
startkey = ep->me_key;
- Py_INCREF(startkey);
+ Py_INCREF(startkey);
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
- Py_DECREF(startkey);
+ Py_DECREF(startkey);
if (cmp < 0)
return NULL;
if (ep0 == mp->ma_table && ep->me_key == startkey) {