summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-07-11 19:20:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-07-11 19:20:47 (GMT)
commit3641a74e1c03ce153042d2c21639e5b6b9604f3b (patch)
tree2548c42f980acdb590551e8f6209322c34f07572 /Misc
parent244d6252f2ed17b61c476926faf5c15ba5328ff0 (diff)
downloadcpython-3641a74e1c03ce153042d2c21639e5b6b9604f3b.zip
cpython-3641a74e1c03ce153042d2c21639e5b6b9604f3b.tar.gz
cpython-3641a74e1c03ce153042d2c21639e5b6b9604f3b.tar.bz2
Issue #17872: Fix a segfault in marshal.load() when input stream returns
more bytes than requested.
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 ea221cb..3ff4d3e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
+- Issue #17872: Fix a segfault in marshal.load() when input stream returns
+ more bytes than requested.
+
- Issue #18426: Fix NULL pointer dereference in C extension import when
PyModule_GetDef() returns an error.