connector

This commit is contained in:
4tochka 2019-05-13 23:52:57 +04:00
parent 28be87e750
commit 8c3e6c86d8

View File

@ -221,7 +221,7 @@ static PyObject *LRU_pop(LRU *self)
Node* n = self->last;
lru_remove_node(self, n);
PUT_NODE(self->dict, n->key, NULL);
Py_DECREF(node);
Py_DECREF(n);
return tuple;
}
else Py_RETURN_NONE;