Fix double decref.

This commit is contained in:
Raymond Hettinger 2008-06-18 00:56:57 +00:00
parent 09fc075c1c
commit 2281da42b0
1 changed files with 0 additions and 1 deletions

View File

@ -559,7 +559,6 @@ math_factorial(PyObject *self, PyObject *arg)
error:
Py_DECREF(result);
Py_XDECREF(iobj);
return NULL;
}