From: Gerhard Häring Date: Sat, 29 Mar 2008 14:11:55 +0000 (+0000) Subject: Moved DECREF to correct place to get rid of leaked references. X-Git-Tag: v3.0a4~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e871ad59cf7cfa0cba173bf31e22a850f5ea9e18;p=python Moved DECREF to correct place to get rid of leaked references. --- diff --git a/Modules/_sqlite/cursor.c b/Modules/_sqlite/cursor.c index 7fd7db31ee..8efa812719 100644 --- a/Modules/_sqlite/cursor.c +++ b/Modules/_sqlite/cursor.c @@ -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); }