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 sqlite-trace-exception
  • Loading branch information
Erlend E. Aasland committed Sep 7, 2021
commit 33b4b6974402df63409ec182f58b496401976a62
2 changes: 1 addition & 1 deletion Modules/_sqlite/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ trace_callback(void *ctx, const char *statement_string)
goto exit;
}

PyObject *ret = PyObject_CallOneArg((PyObject*)user_arg, py_statement);
PyObject *ret = PyObject_CallOneArg((PyObject *)ctx, py_statement);
Py_DECREF(py_statement);
if (ret == NULL) {
pysqlite_state *state = pysqlite_get_state(NULL);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.