bpo-1635741: sqlite3: Fix ref leak introduced by commit bf64d90
(GH-23972)
This commit is contained in:
parent
abba83b4b9
commit
897387d2c8
|
@ -891,7 +891,6 @@ pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
Py_INCREF(aggregate_class);
|
|
||||||
rc = sqlite3_create_function_v2(self->db,
|
rc = sqlite3_create_function_v2(self->db,
|
||||||
name,
|
name,
|
||||||
n_arg,
|
n_arg,
|
||||||
|
|
Loading…
Reference in New Issue