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
db816d65
Kaydet (Commit)
db816d65
authored
Eki 29, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19420: Fix reference leak in module initalization code of _hashopenssl.c
üst
fa3ba4c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
_hashopenssl.c
Modules/_hashopenssl.c
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
db816d65
...
@@ -28,6 +28,9 @@ Core and Builtins
...
@@ -28,6 +28,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #19420: Fix reference leak in module initalization code of
_hashopenssl.c
- Issue #19329: Optimized compiling charsets in regular expressions.
- Issue #19329: Optimized compiling charsets in regular expressions.
- Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
- Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
...
...
Modules/_hashopenssl.c
Dosyayı görüntüle @
db816d65
...
@@ -717,9 +717,9 @@ _openssl_hash_name_mapper(const OBJ_NAME *openssl_obj_name, void *arg)
...
@@ -717,9 +717,9 @@ _openssl_hash_name_mapper(const OBJ_NAME *openssl_obj_name, void *arg)
state
->
error
=
1
;
state
->
error
=
1
;
}
else
{
}
else
{
if
(
PySet_Add
(
state
->
set
,
py_name
)
!=
0
)
{
if
(
PySet_Add
(
state
->
set
,
py_name
)
!=
0
)
{
Py_DECREF
(
py_name
);
state
->
error
=
1
;
state
->
error
=
1
;
}
}
Py_DECREF
(
py_name
);
}
}
}
}
...
...
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