Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701).

This commit is contained in:
Serhiy Storchaka 2016-11-16 16:12:34 +02:00
parent f5894dd646
commit 292dd1b2ad
1 changed files with 1 additions and 1 deletions

View File

@ -10846,7 +10846,7 @@ non_ready_unicode_equal_to_ascii_string(PyObject *unicode, const char *str)
assert(p);
for (i = 0; i < len; i++) {
unsigned char c = (unsigned char)str[i];
if (c > 128 || p[i] != (wchar_t)c)
if (c >= 128 || p[i] != (wchar_t)c)
return 0;
}
return 1;