summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-02-20 06:33:06 (GMT)
committerGitHub <noreply@github.com>2017-02-20 06:33:06 (GMT)
commit7c95a94c3ab41e4296e94335d66b2400ad16f052 (patch)
tree007d90de8ee59e2dd457ca44c7b45aa6e0247bd0 /Misc
parent314a86bae2ecc5e22bc874ad8a1bb71eb732dda6 (diff)
downloadcpython-7c95a94c3ab41e4296e94335d66b2400ad16f052.zip
cpython-7c95a94c3ab41e4296e94335d66b2400ad16f052.tar.gz
cpython-7c95a94c3ab41e4296e94335d66b2400ad16f052.tar.bz2
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#188)
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 c750d5c..52c87d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX
Core and Builtins
-----------------
+- bpo-29347: Fixed possibly dereferencing undefined pointers
+ when creating weakref objects.
+
- bpo-29438: Fixed use-after-free problem in key sharing dict.
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].