PyUnicode_CopyCharacters() initializes overflow

This commit is contained in:
Victor Stinner 2011-09-28 22:28:04 +02:00
parent e57b1c0da1
commit 73f01c65c8
1 changed files with 1 additions and 0 deletions

View File

@ -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) {