[issue20515] Null pointer dereference in tkinter module

2014-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: No, in 2.7 varname converter doesn't accept unicode. Good catch Christian. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue20515] Null pointer dereference in tkinter module

2014-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is the fix needed for 2.7? -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailin

[issue20515] Null pointer dereference in tkinter module

2014-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset d83ce3a2d954 by Christian Heimes in branch '3.3': Issue #20515: Fix NULL pointer dereference introduced by issue #20368 http://hg.python.org/cpython/rev/d83ce3a2d954 New changeset 145032f626d3 by Christian Heimes in branch 'default': Issue #20515: F

[issue20515] Null pointer dereference in tkinter module

2014-02-04 Thread Christian Heimes
New submission from Christian Heimes: varname_converter() doesn't check the return value of PyUnicode_AsUTF8AndSize() for NULL. The bug was introduced by http://hg.python.org/cpython/rev/321b714653e3 / issue #20368 3. returned_null: Function "PyUnicode_AsUTF8AndSize(PyObject *, Py_ssize_t *)"