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
0823ffb2
Kaydet (Commit)
0823ffb2
authored
Nis 23, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
properly handle malloc failure (closes #24044)
Patch by Christian Heimes.
üst
893cce92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
NEWS
Misc/NEWS
+3
-0
listobject.c
Objects/listobject.c
+4
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
0823ffb2
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.7?
Core and Builtins
-----------------
- Issue #24044: Fix possible null pointer dereference in list.sort in out of
memory conditions.
- Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis
and fix by Guido Vranken.
...
...
Objects/listobject.c
Dosyayı görüntüle @
0823ffb2
...
...
@@ -1924,8 +1924,10 @@ listsort(PyListObject *self, PyObject *args, PyObject *kwds)
keys
=
&
ms
.
temparray
[
saved_ob_size
+
1
];
else
{
keys
=
PyMem_MALLOC
(
sizeof
(
PyObject
*
)
*
saved_ob_size
);
if
(
keys
==
NULL
)
return
NULL
;
if
(
keys
==
NULL
)
{
PyErr_NoMemory
();
goto
keyfunc_fail
;
}
}
for
(
i
=
0
;
i
<
saved_ob_size
;
i
++
)
{
...
...
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