mirror of https://github.com/python/cpython
gh-90716: Fix pylong_int_from_string() refleak (#99094)
Fix validated by: $ ./python -m test -R 3:3 test_int Tests result: SUCCESS
This commit is contained in:
parent
c0bf7607a1
commit
387f72588d
|
@ -2376,6 +2376,7 @@ pylong_int_from_string(const char *start, const char *end, PyLongObject **res)
|
|||
goto error;
|
||||
}
|
||||
if (!PyLong_Check(result)) {
|
||||
Py_DECREF(result);
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"_pylong.int_from_string did not return an int");
|
||||
goto error;
|
||||
|
|
Loading…
Reference in New Issue