Kaydet (Commit) b4319982 authored tarafından Neal Norwitz's avatar Neal Norwitz

This change shouldn't have any functional effect. Coverity was

complaining because it seemed like parameters_iter could be NULL.
üst d126200a
......@@ -419,7 +419,7 @@ PyObject* _query_execute(Cursor* self, int multiple, PyObject* args)
} else {
/* sequence */
parameters_iter = PyObject_GetIter(second_argument);
if (PyErr_Occurred())
if (!parameters_iter)
{
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment