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
7e3b948c
Kaydet (Commit)
7e3b948c
authored
Agu 06, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9530: Fix a couple of places where undefined behaviour can
occur, as a result of signed integer overflow.
üst
d0511b0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
bytearrayobject.c
Objects/bytearrayobject.c
+8
-2
No files found.
Objects/bytearrayobject.c
Dosyayı görüntüle @
7e3b948c
...
...
@@ -649,6 +649,11 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
if
(
!
_canresize
(
self
))
return
-
1
;
if
(
slicelen
==
0
)
/* Nothing to do here. */
return
0
;
if
(
step
<
0
)
{
stop
=
start
+
1
;
start
=
stop
+
step
*
(
slicelen
-
1
)
-
1
;
...
...
@@ -665,7 +670,7 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
self
->
ob_bytes
+
cur
+
1
,
lim
);
}
/* Move the tail of the bytes, in one chunk */
cur
=
start
+
slicelen
*
step
;
cur
=
start
+
(
size_t
)
slicelen
*
step
;
if
(
cur
<
(
size_t
)
PyByteArray_GET_SIZE
(
self
))
{
memmove
(
self
->
ob_bytes
+
cur
-
slicelen
,
self
->
ob_bytes
+
cur
,
...
...
@@ -679,7 +684,8 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
}
else
{
/* Assign slice */
Py_ssize_t
cur
,
i
;
Py_ssize_t
i
;
size_t
cur
;
if
(
needed
!=
slicelen
)
{
PyErr_Format
(
PyExc_ValueError
,
...
...
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