summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:57:13 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:57:13 (GMT)
commitabf68ce16474a2d252723099f1c7a6d640191123 (patch)
tree1300b07bd551a888966a4d2d77636dc68a540351 /Misc
parent07940883796e71135723616f06a1405105c09571 (diff)
downloadcpython-abf68ce16474a2d252723099f1c7a6d640191123.zip
cpython-abf68ce16474a2d252723099f1c7a6d640191123.tar.gz
cpython-abf68ce16474a2d252723099f1c7a6d640191123.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 6668877..dddcf76 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,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.