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
29ba6880
Unverified
Kaydet (Commit)
29ba6880
authored
Ara 03, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Ara 03, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884)
üst
1fb72d2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
longobject.c
Objects/longobject.c
+11
-3
No files found.
Objects/longobject.c
Dosyayı görüntüle @
29ba6880
...
...
@@ -2024,7 +2024,7 @@ long_from_binary_base(const char **str, int base, PyLongObject **res)
const
char
*
p
=
*
str
;
const
char
*
start
=
p
;
char
prev
=
0
;
in
t
digits
=
0
;
Py_ssize_
t
digits
=
0
;
int
bits_per_char
;
Py_ssize_t
n
;
PyLongObject
*
z
;
...
...
@@ -2267,8 +2267,9 @@ just 1 digit at the start, so that the copying code was exercised for every
digit beyond the first.
***/
twodigits
c
;
/* current input character */
double
fsize_z
;
Py_ssize_t
size_z
;
in
t
digits
=
0
;
Py_ssize_
t
digits
=
0
;
int
i
;
int
convwidth
;
twodigits
convmultmax
,
convmult
;
...
...
@@ -2330,7 +2331,14 @@ digit beyond the first.
* need to initialize z->ob_digit -- no slot is read up before
* being stored into.
*/
size_z
=
(
Py_ssize_t
)(
digits
*
log_base_BASE
[
base
])
+
1
;
fsize_z
=
digits
*
log_base_BASE
[
base
]
+
1
;
if
(
fsize_z
>
MAX_LONG_DIGITS
)
{
/* The same exception as in _PyLong_New(). */
PyErr_SetString
(
PyExc_OverflowError
,
"too many digits in integer"
);
return
NULL
;
}
size_z
=
(
Py_ssize_t
)
fsize_z
;
/* Uncomment next line to test exceedingly rare copy code */
/* size_z = 1; */
assert
(
size_z
>
0
);
...
...
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