summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-09-29 17:46:37 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-09-29 17:46:37 (GMT)
commit5a4a1096949335736ccad2b102fd91ebdd2e25b0 (patch)
tree8fada4a76209c59a71265db0fb92fc6fcc236968 /Misc
parentb86ecf4bd1bfe237fbaa7ac8098af76141b5caf1 (diff)
downloadcpython-5a4a1096949335736ccad2b102fd91ebdd2e25b0.zip
cpython-5a4a1096949335736ccad2b102fd91ebdd2e25b0.tar.gz
cpython-5a4a1096949335736ccad2b102fd91ebdd2e25b0.tar.bz2
Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas
Jarosch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 6845faa..408d91b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -436,6 +436,7 @@ Bertrand Janin
Geert Jansen
Jack Jansen
Bill Janssen
+Thomas Jarosch
Drew Jenkins
Flemming Kjær Jensen
MunSic Jeong
diff --git a/Misc/NEWS b/Misc/NEWS
index b5c75b4..2f6ef7f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -82,6 +82,9 @@ Tests
Extension Modules
-----------------
+- Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by
+ Thomas Jarosch.
+
- Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
Thanks to Suman Saha for finding the bug and providing a patch.