[issue2242] Decoding UTF-7 with "ignore warnings" crashes Python on Windows Vista

Antoine Pitrou report at bugs.python.org
Fri Jul 25 12:42:58 CEST 2008


Antoine Pitrou <pitrou at free.fr> added the comment:

Hirokazu, does replacing the following line (rather than changing the
type of the `ch` variable):
         ch = *s;
with
         ch = (unsigned char) *s;

fix the crash as well?

----------
keywords: +patch
nosy: +pitrou

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue2242>
_______________________________________


More information about the Python-bugs-list mailing list