Fixed callproc return value refcount

Temporary anyway: I want to go back returning a list (or dict).
This commit is contained in:
Daniele Varrazzo 2014-06-05 12:45:39 +02:00 committed by mrmilosz
parent 021f6d22ad
commit 4003b7c977

View File

@ -1140,6 +1140,7 @@ psyco_curs_callproc(cursorObject *self, PyObject *args)
self, operation, pvals, self->conn->async, 0)) {
/* return None from this until it's DBAPI compliant... */
Py_INCREF(Py_None);
res = Py_None;
}