[issue23368] integer overflow in _PyUnicode_AsKind

2015-03-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Was fixed as part of issue23446. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue23368] integer overflow in _PyUnicode_AsKind

2015-03-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: fixed -> out of date ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue23368] integer overflow in _PyUnicode_AsKind

2015-03-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list ma

[issue23368] integer overflow in _PyUnicode_AsKind

2015-02-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue23368] integer overflow in _PyUnicode_AsKind

2015-02-01 Thread paul
New submission from paul: # Bug # --- # # void* # _PyUnicode_AsKind(PyObject *s, unsigned int kind) # { # Py_ssize_t len; # ... # len = PyUnicode_GET_LENGTH(s); # ... # switch (kind) { # ... # case PyUnicode_4BYTE_KIND: # 1 result = PyMem_Malloc(len * sizeof(Py_