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

Fix unchecked return result from Coverity.

üst 7e957d38
......@@ -585,6 +585,8 @@ void _final_callback(sqlite3_context* context)
function_result = Py_None;
} else {
args = PyTuple_New(0);
if (!args)
return;
function_result = PyObject_CallObject(finalizemethod, args);
Py_DECREF(args);
Py_DECREF(finalizemethod);
......
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