summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-11-16 05:57:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-11-16 05:57:39 (GMT)
commita4d33b34286e30819b36cc9e6d357d16eca813e4 (patch)
tree0a453f048b32924061fc3077bfd8218e5895e90b /Misc
parentd0a5b1c3432574c248dfd86e583b5cd09503a374 (diff)
downloadcpython-a4d33b34286e30819b36cc9e6d357d16eca813e4.zip
cpython-a4d33b34286e30819b36cc9e6d357d16eca813e4.tar.gz
cpython-a4d33b34286e30819b36cc9e6d357d16eca813e4.tar.bz2
make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (closes #25630)
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 f72f8ac..e6b3c5e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #25630: Fix a possible segfault during argument parsing in functions
+ that accept filesystem paths.
+
- Issue #23564: Fixed a partially broken sanity check in the _posixsubprocess
internals regarding how fds_to_pass were passed to the child. The bug had
no actual impact as subprocess.py already avoided it.