mirror of https://github.com/python/cpython.git
Moved DECREF to correct place to get rid of leaked references.
This commit is contained in:
parent
ca67412f28
commit
e871ad59cf
|
@ -355,9 +355,9 @@ PyObject* _pysqlite_fetch_one_row(pysqlite_Cursor* self)
|
|||
error_obj = PyUnicode_FromEncodedObject(buf_bytes, "ascii", "replace");
|
||||
if (!error_obj) {
|
||||
PyErr_SetString(pysqlite_OperationalError, "Could not decode to UTF-8");
|
||||
Py_DECREF(error_obj);
|
||||
} else {
|
||||
PyErr_SetObject(pysqlite_OperationalError, error_obj);
|
||||
Py_DECREF(error_obj);
|
||||
}
|
||||
Py_DECREF(buf_bytes);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue