mirror of https://github.com/python/cpython
ssue #27942: Fix memory leak in codeobject.c
This commit is contained in:
parent
58c534dd6c
commit
d2fd3599ab
|
@ -110,6 +110,8 @@ Core and Builtins
|
||||||
- Issue #27443: __length_hint__() of bytearray iterators no longer return a
|
- Issue #27443: __length_hint__() of bytearray iterators no longer return a
|
||||||
negative integer for a resized bytearray.
|
negative integer for a resized bytearray.
|
||||||
|
|
||||||
|
- Issue #27942: Fix memory leak in codeobject.c
|
||||||
|
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
@ -69,6 +69,7 @@ intern_string_constants(PyObject *tuple)
|
||||||
intern_string_constants(v);
|
intern_string_constants(v);
|
||||||
}
|
}
|
||||||
else if (PyFrozenSet_CheckExact(v)) {
|
else if (PyFrozenSet_CheckExact(v)) {
|
||||||
|
PyObject *w = v;
|
||||||
PyObject *tmp = PySequence_Tuple(v);
|
PyObject *tmp = PySequence_Tuple(v);
|
||||||
if (tmp == NULL) {
|
if (tmp == NULL) {
|
||||||
PyErr_Clear();
|
PyErr_Clear();
|
||||||
|
@ -81,6 +82,7 @@ intern_string_constants(PyObject *tuple)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
PyTuple_SET_ITEM(tuple, i, v);
|
PyTuple_SET_ITEM(tuple, i, v);
|
||||||
|
Py_DECREF(w);
|
||||||
modified = 1;
|
modified = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue