summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:56:59 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:56:59 (GMT)
commit17c01785ee12331fb8cf782ded90a5eaed0b88e1 (patch)
tree66d800a2cf8a18d099d99a03c039cdf84b5d5710 /Misc
parent1c09c0ea1107a8fbb22c949235a0950b9a98e252 (diff)
downloadcpython-17c01785ee12331fb8cf782ded90a5eaed0b88e1.zip
cpython-17c01785ee12331fb8cf782ded90a5eaed0b88e1.tar.gz
cpython-17c01785ee12331fb8cf782ded90a5eaed0b88e1.tar.bz2
Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with
empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e5e681..2b0ac04 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with
+ empty string or tuple argument.
+
- Issue #21951: Tkinter now most likely raises MemoryError instead of crash
if the memory allocation fails.