summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-06-23 08:35:23 (GMT)
committerGitHub <noreply@github.com>2018-06-23 08:35:23 (GMT)
commit9b7cf757213cf4d7ae1d436d86ad53f5ba362d55 (patch)
tree142983943c87abd96321b5ec83873c8a16fda1bf /Misc
parent44742e94c809d580fa406f9d21b86e1d4e1938a5 (diff)
downloadcpython-9b7cf757213cf4d7ae1d436d86ad53f5ba362d55.zip
cpython-9b7cf757213cf4d7ae1d436d86ad53f5ba362d55.tar.gz
cpython-9b7cf757213cf4d7ae1d436d86ad53f5ba362d55.tar.bz2
bpo-33916: Fix bz2 and lzma init when called twice (GH-7843)
bz2, lzma: When Decompressor.__init__() is called twice, free the old lock to not leak memory.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-21-11-35-47.bpo-33916.cZgPCD.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-21-11-35-47.bpo-33916.cZgPCD.rst b/Misc/NEWS.d/next/Library/2018-06-21-11-35-47.bpo-33916.cZgPCD.rst
new file mode 100644
index 0000000..65b9d2b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-21-11-35-47.bpo-33916.cZgPCD.rst
@@ -0,0 +1,2 @@
+bz2 and lzma: When Decompressor.__init__() is called twice, free the old
+lock to not leak memory.