summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-30 01:31:49 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-30 01:31:49 (GMT)
commit8d77d448a53ed9d0607f1ad226056eb8ee8a48f8 (patch)
tree85f6ca3349b7c022f8176b57e9a346b4c7b3775e /Misc
parent37040cdace1982772e5f35e4acfa13861d72065d (diff)
downloadcpython-8d77d448a53ed9d0607f1ad226056eb8ee8a48f8.zip
cpython-8d77d448a53ed9d0607f1ad226056eb8ee8a48f8.tar.gz
cpython-8d77d448a53ed9d0607f1ad226056eb8ee8a48f8.tar.bz2
fix security issue 2: imageop's poor validation of arguments could result in segfaults
patch by Victor Stinner reviewed by myself and Brett
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 bbbeb91..1b08d76 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,9 @@ Core and Builtins
Extension Modules
-----------------
+- Security Issue #2: imageop did not validate arguments correctly and could
+ segfault as a result.
+
- Issue #3886: Possible integer overflows in the _hashopenssl module were
closed.