mirror of
https://github.com/python/cpython.git
synced 2025-10-31 21:51:50 +00:00
PyUnicode_CopyCharacters() initializes overflow
This commit is contained in:
parent
e57b1c0da1
commit
73f01c65c8
1 changed files with 1 additions and 0 deletions
|
|
@ -654,6 +654,7 @@ PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,
|
||||||
int overflow;
|
int overflow;
|
||||||
|
|
||||||
maxchar = 0;
|
maxchar = 0;
|
||||||
|
overflow = 0;
|
||||||
for (i=0; i < how_many; i++) {
|
for (i=0; i < how_many; i++) {
|
||||||
ch = PyUnicode_READ(from_kind, from_data, from_start + i);
|
ch = PyUnicode_READ(from_kind, from_data, from_start + i);
|
||||||
if (ch > maxchar) {
|
if (ch > maxchar) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue