summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-10-10 20:26:24 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-10-10 20:26:24 (GMT)
commit39ecb9c71b6e55d8a61a710d0144231bd88f9ada (patch)
tree6cff8890ff67016e555ae35d3ee5d51e0c1a8b0b /Misc
parent93c5a5df8ea118f6e4a153a7c8cccd65a5ff8bff (diff)
downloadcpython-39ecb9c71b6e55d8a61a710d0144231bd88f9ada.zip
cpython-39ecb9c71b6e55d8a61a710d0144231bd88f9ada.tar.gz
cpython-39ecb9c71b6e55d8a61a710d0144231bd88f9ada.tar.bz2
bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.text and Element.tail (#3924)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-08-23-28-30.bpo-31728.XrVMME.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-08-23-28-30.bpo-31728.XrVMME.rst b/Misc/NEWS.d/next/Library/2017-10-08-23-28-30.bpo-31728.XrVMME.rst
new file mode 100644
index 0000000..b317d9f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-08-23-28-30.bpo-31728.XrVMME.rst
@@ -0,0 +1,2 @@
+Prevent crashes in `_elementtree` due to unsafe cleanup of `Element.text`
+and `Element.tail`. Patch by Oren Milman.