Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
9624a764
Kaydet (Commit)
9624a764
authored
Eyl 29, 2011
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas
Jarosch.
üst
a0702ab1
5a4a1096
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
ossaudiodev.c
Modules/ossaudiodev.c
+1
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
9624a764
...
...
@@ -463,6 +463,7 @@ Bertrand Janin
Geert Jansen
Jack Jansen
Bill Janssen
Thomas Jarosch
Julien Jehannet
Drew Jenkins
Flemming Kjær Jensen
...
...
Misc/NEWS
Dosyayı görüntüle @
9624a764
...
...
@@ -1298,6 +1298,9 @@ Tools/Demos
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.
...
...
Modules/ossaudiodev.c
Dosyayı görüntüle @
9624a764
...
...
@@ -129,6 +129,7 @@ newossobject(PyObject *arg)
}
if
(
ioctl
(
fd
,
SNDCTL_DSP_GETFMTS
,
&
afmts
)
==
-
1
)
{
close
(
fd
);
PyErr_SetFromErrnoWithFilename
(
PyExc_IOError
,
devicename
);
return
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment