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
c0420fd4
Kaydet (Commit)
c0420fd4
authored
Eyl 19, 2011
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.
üst
bc566b00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
NEWS
Misc/NEWS
+4
-0
listobject.c
Objects/listobject.c
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
c0420fd4
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
- Issue #12973: Fix overflow check that relied on undefined behaviour in
list_repeat. This bug caused test_list to fail with recent versions
of Clang.
- Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
mapped to POSIX errno ENOTDIR (previously EINVAL).
...
...
Objects/listobject.c
Dosyayı görüntüle @
c0420fd4
...
...
@@ -58,7 +58,7 @@ list_resize(PyListObject *self, Py_ssize_t newsize)
if
(
newsize
==
0
)
new_allocated
=
0
;
items
=
self
->
ob_item
;
if
(
new_allocated
<=
(
(
~
(
size_t
)
0
)
/
sizeof
(
PyObject
*
)))
if
(
new_allocated
<=
(
PY_SIZE_MAX
/
sizeof
(
PyObject
*
)))
PyMem_RESIZE
(
items
,
PyObject
*
,
new_allocated
);
else
items
=
NULL
;
...
...
@@ -510,9 +510,9 @@ list_repeat(PyListObject *a, Py_ssize_t n)
PyObject
*
elem
;
if
(
n
<
0
)
n
=
0
;
size
=
Py_SIZE
(
a
)
*
n
;
if
(
n
&&
size
/
n
!=
Py_SIZE
(
a
))
if
(
n
>
0
&&
Py_SIZE
(
a
)
>
PY_SSIZE_T_MAX
/
n
)
return
PyErr_NoMemory
();
size
=
Py_SIZE
(
a
)
*
n
;
if
(
size
==
0
)
return
PyList_New
(
0
);
np
=
(
PyListObject
*
)
PyList_New
(
size
);
...
...
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