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
fcc2e71e
Kaydet (Commit)
fcc2e71e
authored
Kas 14, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.4 (#25578)
üst
7e2b870b
025a1fd9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
NEWS
Misc/NEWS
+2
-0
_ssl.c
Modules/_ssl.c
+5
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
fcc2e71e
...
@@ -245,6 +245,8 @@ Library
...
@@ -245,6 +245,8 @@ Library
- Issue #24881: Fixed setting binary mode in Python implementation of FileIO
- Issue #24881: Fixed setting binary mode in Python implementation of FileIO
on Windows and Cygwin. Patch from Akira Li.
on Windows and Cygwin. Patch from Akira Li.
- Issue #25578: Fix (another) memory leak in SSLSocket.getpeercer().
- Issue #25530: Disable the vulnerable SSLv3 protocol by default when creating
- Issue #25530: Disable the vulnerable SSLv3 protocol by default when creating
ssl.SSLContext.
ssl.SSLContext.
...
...
Modules/_ssl.c
Dosyayı görüntüle @
fcc2e71e
...
@@ -1017,7 +1017,10 @@ _get_aia_uri(X509 *certificate, int nid) {
...
@@ -1017,7 +1017,10 @@ _get_aia_uri(X509 *certificate, int nid) {
AUTHORITY_INFO_ACCESS
*
info
;
AUTHORITY_INFO_ACCESS
*
info
;
info
=
X509_get_ext_d2i
(
certificate
,
NID_info_access
,
NULL
,
NULL
);
info
=
X509_get_ext_d2i
(
certificate
,
NID_info_access
,
NULL
,
NULL
);
if
((
info
==
NULL
)
||
(
sk_ACCESS_DESCRIPTION_num
(
info
)
==
0
))
{
if
(
info
==
NULL
)
return
Py_None
;
if
(
sk_ACCESS_DESCRIPTION_num
(
info
)
==
0
)
{
AUTHORITY_INFO_ACCESS_free
(
info
);
return
Py_None
;
return
Py_None
;
}
}
...
@@ -3967,7 +3970,7 @@ _ssl_get_default_verify_paths_impl(PyModuleDef *module)
...
@@ -3967,7 +3970,7 @@ _ssl_get_default_verify_paths_impl(PyModuleDef *module)
else if ((target = PyUnicode_DecodeFSDefault(tmp)) == NULL) { \
else if ((target = PyUnicode_DecodeFSDefault(tmp)) == NULL) { \
target = PyBytes_FromString(tmp); } \
target = PyBytes_FromString(tmp); } \
if (!target) goto error; \
if (!target) goto error; \
}
}
CONVERT
(
X509_get_default_cert_file_env
(),
ofile_env
);
CONVERT
(
X509_get_default_cert_file_env
(),
ofile_env
);
CONVERT
(
X509_get_default_cert_file
(),
ofile
);
CONVERT
(
X509_get_default_cert_file
(),
ofile
);
...
...
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