Commit 2ba48ff6 authored by Neal Norwitz's avatar Neal Norwitz

Fix unchecked return result from Coverity.

parent 0a2131f9
......@@ -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