mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
Fixed resource leak to scratch when _PyUnicodeWriter_Prepare fails
This commit is contained in:
parent
f03572d040
commit
110ac16b9f
@ -1628,8 +1628,10 @@ long_to_decimal_string_internal(PyObject *aa,
|
||||
strlen++;
|
||||
}
|
||||
if (writer) {
|
||||
if (_PyUnicodeWriter_Prepare(writer, strlen, '9') == -1)
|
||||
if (_PyUnicodeWriter_Prepare(writer, strlen, '9') == -1) {
|
||||
Py_DECREF(scratch);
|
||||
return -1;
|
||||
}
|
||||
kind = writer->kind;
|
||||
str = NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user