summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-07-26 20:50:01 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-07-26 20:50:01 (GMT)
commit4ebf6d7c3c2a0b04dd815c0b042294e36d644954 (patch)
treeae06c91790fdf002dd5f6e64d5e36c5c6a2007f8 /Misc
parentf446d217089e61778c794023f38932e2c2798234 (diff)
parent704e2d374f88bca83339b95d559b0abce12dc6bd (diff)
downloadcpython-4ebf6d7c3c2a0b04dd815c0b042294e36d644954.zip
cpython-4ebf6d7c3c2a0b04dd815c0b042294e36d644954.tar.gz
cpython-4ebf6d7c3c2a0b04dd815c0b042294e36d644954.tar.bz2
Issue #18560: Fix potential NULL pointer dereference in sum()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2f387e7..10ea9f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #18560: Fix potential NULL pointer dereference in sum().
+
- Issue #18520: Add a new PyStructSequence_InitType2() function, same than
PyStructSequence_InitType() except that it has a return value (0 on success,
-1 on error).