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
623fdb98
Kaydet (Commit)
623fdb98
authored
Tem 08, 2002
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PyNode_AddChild() and fancy_roundup(): Be paranoid about int overflow.
üst
cccd1e72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
node.c
Parser/node.c
+7
-2
No files found.
Parser/node.c
Dosyayı görüntüle @
623fdb98
...
...
@@ -18,15 +18,18 @@ PyNode_New(int type)
return
n
;
}
/* See comments at XXXROUNDUP below. */
/* See comments at XXXROUNDUP below.
Returns -1 on overflow.
*/
static
int
fancy_roundup
(
int
n
)
{
/* Round up to the closest power of 2 >= n. */
int
result
=
256
;
assert
(
n
>
128
);
while
(
result
<
n
)
while
(
result
<
n
)
{
result
<<=
1
;
if
(
result
<=
0
)
return
-
1
;
}
return
result
;
}
...
...
@@ -62,6 +65,8 @@ PyNode_AddChild(register node *n1, int type, char *str, int lineno)
current_capacity
=
XXXROUNDUP
(
nch
);
required_capacity
=
XXXROUNDUP
(
nch
+
1
);
if
(
current_capacity
<
0
||
required_capacity
<
0
)
return
E_OVERFLOW
;
if
(
current_capacity
<
required_capacity
)
{
n
=
n1
->
n_child
;
PyMem_RESIZE
(
n
,
node
,
required_capacity
);
...
...
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