[issue23367] integer overflow in unicodedata.normalize

Serhiy Storchaka report at bugs.python.org
Mon Mar 2 17:58:28 CET 2015


Serhiy Storchaka added the comment:

Actually integer overflow in the line

    space = (isize > 10 ? 10 : isize) + isize;

is not possible.

Integer overflows in PyMem_Malloc were fixed in issue23446.

----------

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


More information about the Python-bugs-list mailing list