#2242: utf7 decoding crashes on bogus input on some Windows/MSVC versions

This commit is contained in:
Antoine Pitrou 2008-07-25 17:45:59 +00:00
parent 5255cba4bc
commit 4982d5d04a
2 changed files with 4 additions and 1 deletions

View file

@ -1523,7 +1523,7 @@ PyObject *PyUnicode_DecodeUTF7Stateful(const char *s,
while (s < e) {
Py_UNICODE ch;
restart:
ch = *s;
ch = (unsigned char) *s;
if (inShift) {
if ((ch == '-') || !B64CHAR(ch)) {