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

@ -1139,8 +1139,9 @@ psyco_curs_callproc(cursorObject *self, PyObject *args)
if (0 <= _psyco_curs_execute( if (0 <= _psyco_curs_execute(
self, operation, pvals, self->conn->async, 0)) { self, operation, pvals, self->conn->async, 0)) {
/* return None from this until it's DBAPI compliant... */ /* return None from this until it's DBAPI compliant... */
res = Py_None; Py_INCREF(Py_None);
res = Py_None;
} }
exit: exit: