Commit cf86bcd1 authored by Serhiy Storchaka's avatar Serhiy Storchaka

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

parent ce52e626
...@@ -10846,7 +10846,7 @@ non_ready_unicode_equal_to_ascii_string(PyObject *unicode, const char *str) ...@@ -10846,7 +10846,7 @@ non_ready_unicode_equal_to_ascii_string(PyObject *unicode, const char *str)
assert(p); assert(p);
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
unsigned char c = (unsigned char)str[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 0;
} }
return 1; return 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment