mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.
Patch by Xiang Zhang.
This commit is contained in:
parent
75a25867ab
commit
cfdfbb4d3c
2 changed files with 7 additions and 7 deletions
|
@ -129,9 +129,9 @@ range_new(PyTypeObject *type, PyObject *args, PyObject *kw)
|
|||
return (PyObject *) obj;
|
||||
|
||||
/* Failed to create object, release attributes */
|
||||
Py_XDECREF(start);
|
||||
Py_XDECREF(stop);
|
||||
Py_XDECREF(step);
|
||||
Py_DECREF(start);
|
||||
Py_DECREF(stop);
|
||||
Py_DECREF(step);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -196,7 +196,7 @@ compute_range_length(PyObject *start, PyObject *stop, PyObject *step)
|
|||
/* if (lo >= hi), return length of 0. */
|
||||
cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE);
|
||||
if (cmp_result != 0) {
|
||||
Py_XDECREF(step);
|
||||
Py_DECREF(step);
|
||||
if (cmp_result < 0)
|
||||
return NULL;
|
||||
return PyLong_FromLong(0);
|
||||
|
@ -225,9 +225,9 @@ compute_range_length(PyObject *start, PyObject *stop, PyObject *step)
|
|||
return result;
|
||||
|
||||
Fail:
|
||||
Py_DECREF(step);
|
||||
Py_XDECREF(tmp2);
|
||||
Py_XDECREF(diff);
|
||||
Py_XDECREF(step);
|
||||
Py_XDECREF(tmp1);
|
||||
Py_XDECREF(one);
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue