There was an error while loading. Please reload this page.
1 parent fe7f1e3 commit b8f604eCopy full SHA for b8f604e
1 file changed
Modules/_sqlite/connection.c
@@ -1122,7 +1122,7 @@ _pysqlite_drop_unused_blob_references(pysqlite_Connection* self)
1122
for (Py_ssize_t i = 0; i < imax; i++) {
1123
PyObject* weakref = PyList_GET_ITEM(self->blobs, i);
1124
if (_PyWeakref_IsDead(weakref)) {
1125
- continue;
+ continue;
1126
}
1127
if (PyList_Append(new_list, weakref) != 0) {
1128
Py_DECREF(new_list);
0 commit comments