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
cf1c8339
Kaydet (Commit)
cf1c8339
authored
Şub 22, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding.
üst
ba6bafcf
4f22a8d7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
NEWS
Misc/NEWS
+3
-0
import.c
Python/import.c
+3
-4
No files found.
Misc/NEWS
Dosyayı görüntüle @
cf1c8339
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
- Issue #14084: Fix a file descriptor leak when importing a module with a
bad encoding.
- Upgrade Unicode data to Unicode 6.1.
- Issue #14040: Remove rarely used file name suffixes for C extensions
...
...
Python/import.c
Dosyayı görüntüle @
cf1c8339
...
...
@@ -3628,11 +3628,9 @@ call_find_module(PyObject *name, PyObject *path_list)
if
(
fd
!=
-
1
)
fd
=
dup
(
fd
);
fclose
(
fp
);
if
(
fd
==
-
1
)
{
PyErr_SetFromErrno
(
PyExc_OSError
);
return
NULL
;
}
fp
=
NULL
;
if
(
fd
==
-
1
)
return
PyErr_SetFromErrno
(
PyExc_OSError
);
}
if
(
fd
!=
-
1
)
{
if
(
strchr
(
fdp
->
mode
,
'b'
)
==
NULL
)
{
...
...
@@ -3642,6 +3640,7 @@ call_find_module(PyObject *name, PyObject *path_list)
lseek
(
fd
,
0
,
0
);
/* Reset position */
if
(
found_encoding
==
NULL
&&
PyErr_Occurred
())
{
Py_XDECREF
(
pathobj
);
close
(
fd
);
return
NULL
;
}
encoding
=
(
found_encoding
!=
NULL
)
?
found_encoding
:
...
...
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