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
2a19074a
Kaydet (Commit)
2a19074a
authored
Nis 13, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace INT_MAX with PY_SSIZE_T_MAX where string length
are concerned.
üst
2308915b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fileobject.c
Objects/fileobject.c
+4
-4
No files found.
Objects/fileobject.c
Dosyayı görüntüle @
2a19074a
...
...
@@ -823,7 +823,7 @@ file_read(PyFileObject *f, PyObject *args)
buffersize
=
new_buffersize
(
f
,
(
size_t
)
0
);
else
buffersize
=
bytesrequested
;
if
(
buffersize
>
IN
T_MAX
)
{
if
(
buffersize
>
PY_SSIZE_
T_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"requested number of bytes is more than a Python string can hold"
);
return
NULL
;
...
...
@@ -1098,7 +1098,7 @@ getline_via_fgets(FILE *fp)
assert
(
*
(
pvend
-
1
)
==
'\0'
);
increment
=
total_v_size
>>
2
;
/* mild exponential growth */
total_v_size
+=
increment
;
if
(
total_v_size
>
IN
T_MAX
)
{
if
(
total_v_size
>
PY_SSIZE_
T_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"line is longer than a Python string can hold"
);
Py_DECREF
(
v
);
...
...
@@ -1209,7 +1209,7 @@ get_line(PyFileObject *f, int n)
used_v_size
=
total_v_size
;
increment
=
total_v_size
>>
2
;
/* mild exponential growth */
total_v_size
+=
increment
;
if
(
total_v_size
>
IN
T_MAX
)
{
if
(
total_v_size
>
PY_SSIZE_
T_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"line is longer than a Python string can hold"
);
Py_DECREF
(
v
);
...
...
@@ -1401,7 +1401,7 @@ file_readlines(PyFileObject *f, PyObject *args)
/* Need a larger buffer to fit this line */
nfilled
+=
nread
;
buffersize
*=
2
;
if
(
buffersize
>
IN
T_MAX
)
{
if
(
buffersize
>
PY_SSIZE_
T_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"line is longer than a Python string can hold"
);
goto
error
;
...
...
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