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
564f8903
Kaydet (Commit)
564f8903
authored
Eyl 29, 2011
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas
Jarosch.
üst
169fa934
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 @
564f8903
...
@@ -402,6 +402,7 @@ Kjetil Jacobsen
...
@@ -402,6 +402,7 @@ Kjetil Jacobsen
Geert Jansen
Geert Jansen
Jack Jansen
Jack Jansen
Bill Janssen
Bill Janssen
Thomas Jarosch
Drew Jenkins
Drew Jenkins
Flemming Kjær Jensen
Flemming Kjær Jensen
Jiba
Jiba
...
...
Misc/NEWS
Dosyayı görüntüle @
564f8903
...
@@ -50,6 +50,9 @@ Core and Builtins
...
@@ -50,6 +50,9 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
13058
:
ossaudiodev
:
fix
a
file
descriptor
leak
on
error
.
Patch
by
Thomas
Jarosch
.
-
Issue
#
12931
:
xmlrpclib
now
encodes
Unicode
URI
to
ISO
-
8859
-
1
,
instead
of
-
Issue
#
12931
:
xmlrpclib
now
encodes
Unicode
URI
to
ISO
-
8859
-
1
,
instead
of
failing
with
a
UnicodeDecodeError
.
failing
with
a
UnicodeDecodeError
.
...
...
Modules/ossaudiodev.c
Dosyayı görüntüle @
564f8903
...
@@ -129,6 +129,7 @@ newossobject(PyObject *arg)
...
@@ -129,6 +129,7 @@ newossobject(PyObject *arg)
}
}
if
(
ioctl
(
fd
,
SNDCTL_DSP_GETFMTS
,
&
afmts
)
==
-
1
)
{
if
(
ioctl
(
fd
,
SNDCTL_DSP_GETFMTS
,
&
afmts
)
==
-
1
)
{
close
(
fd
);
PyErr_SetFromErrnoWithFilename
(
PyExc_IOError
,
devicename
);
PyErr_SetFromErrnoWithFilename
(
PyExc_IOError
,
devicename
);
return
NULL
;
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