mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #26200: Restored more safe usages of Py_SETREF.
This commit is contained in:
commit
59865e7fe1
3 changed files with 9 additions and 9 deletions
|
@ -3439,14 +3439,14 @@ dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)
|
|||
goto error;
|
||||
}
|
||||
|
||||
Py_XSETREF(exponent, long_methods->nb_power(tmp, exponent, Py_None));
|
||||
Py_SETREF(exponent, long_methods->nb_power(tmp, exponent, Py_None));
|
||||
Py_DECREF(tmp);
|
||||
if (exponent == NULL) {
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (exp >= 0) {
|
||||
Py_XSETREF(numerator, long_methods->nb_multiply(numerator, exponent));
|
||||
Py_SETREF(numerator, long_methods->nb_multiply(numerator, exponent));
|
||||
if (numerator == NULL) {
|
||||
goto error;
|
||||
}
|
||||
|
@ -3462,8 +3462,8 @@ dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)
|
|||
if (tmp == NULL) {
|
||||
goto error;
|
||||
}
|
||||
Py_XSETREF(numerator, long_methods->nb_floor_divide(numerator, tmp));
|
||||
Py_XSETREF(denominator, long_methods->nb_floor_divide(denominator, tmp));
|
||||
Py_SETREF(numerator, long_methods->nb_floor_divide(numerator, tmp));
|
||||
Py_SETREF(denominator, long_methods->nb_floor_divide(denominator, tmp));
|
||||
Py_DECREF(tmp);
|
||||
if (numerator == NULL || denominator == NULL) {
|
||||
goto error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue