Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
goto no longer needed.
  • Loading branch information
felixxm committed Jan 25, 2024
commit 8cf51d42353fabf370aa8857b3ee8e9f6c14fbea
8 changes: 2 additions & 6 deletions Modules/_sqlite/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -2006,18 +2006,14 @@ pysqlite_connection_iterdump_impl(pysqlite_Connection *self,
PyObject *args[2] = {(PyObject *)self, filter};
PyObject *kwnames = Py_BuildValue("(s)", "filter");
if (!kwnames) {
goto error;
Py_DECREF(iterdump);
return NULL;
}

PyObject *retval = PyObject_Vectorcall(iterdump, args, 1, kwnames);
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
Py_DECREF(iterdump);
Py_DECREF(kwnames);
return retval;

error:
Py_DECREF(iterdump);
Py_XDECREF(kwnames);
return NULL;
}

/*[clinic input]
Expand Down