Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into bpo-36859
  • Loading branch information
Erlend E. Aasland committed Jun 15, 2021
commit 1bdefdde21cc3145fce0a040f6ec31d852a37dd9
2 changes: 2 additions & 0 deletions Modules/_sqlite/statement.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql)
goto error;
}


pysqlite_state *state = pysqlite_get_state(NULL);
pysqlite_Statement *self = PyObject_GC_New(pysqlite_Statement,
state->StatementType);
if (self == NULL) {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.