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
91060f26
Kaydet (Commit)
91060f26
authored
Agu 14, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.4 (closes #27760)
üst
f17a8e9a
5295532a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
9 deletions
+17
-9
NEWS
Misc/NEWS
+2
-0
binascii.c
Modules/binascii.c
+15
-9
No files found.
Misc/NEWS
Dosyayı görüntüle @
91060f26
...
...
@@ -40,6 +40,8 @@ Library
- In the curses module, raise an error if window.getstr() is passed a negative
value.
- Issue #27760: Fix possible integer overflow in binascii.b2a_qp.
- Issue #27758: Fix possible integer overflow in the _csv module for large record
lengths.
...
...
Modules/binascii.c
Dosyayı görüntüle @
91060f26
...
...
@@ -1383,6 +1383,7 @@ binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
/* First, scan to see how many characters need to be encoded */
in
=
0
;
while
(
in
<
datalen
)
{
Py_ssize_t
delta
=
0
;
if
((
databuf
[
in
]
>
126
)
||
(
databuf
[
in
]
==
'='
)
||
(
header
&&
databuf
[
in
]
==
'_'
)
||
...
...
@@ -1397,12 +1398,12 @@ binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
if
((
linelen
+
3
)
>=
MAXLINESIZE
)
{
linelen
=
0
;
if
(
crlf
)
odatalen
+=
3
;
delta
+=
3
;
else
odatalen
+=
2
;
delta
+=
2
;
}
linelen
+=
3
;
odatalen
+=
3
;
delta
+=
3
;
in
++
;
}
else
{
...
...
@@ -1414,11 +1415,11 @@ binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
linelen
=
0
;
/* Protect against whitespace on end of line */
if
(
in
&&
((
databuf
[
in
-
1
]
==
' '
)
||
(
databuf
[
in
-
1
]
==
'\t'
)))
odatalen
+=
2
;
delta
+=
2
;
if
(
crlf
)
odatalen
+=
2
;
delta
+=
2
;
else
odatalen
+=
1
;
delta
+=
1
;
if
(
databuf
[
in
]
==
'\r'
)
in
+=
2
;
else
...
...
@@ -1430,15 +1431,20 @@ binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
(
linelen
+
1
)
>=
MAXLINESIZE
)
{
linelen
=
0
;
if
(
crlf
)
odatalen
+=
3
;
delta
+=
3
;
else
odatalen
+=
2
;
delta
+=
2
;
}
linelen
++
;
odatalen
++
;
delta
++
;
in
++
;
}
}
if
(
PY_SSIZE_T_MAX
-
delta
<
odatalen
)
{
PyErr_NoMemory
();
return
NULL
;
}
odatalen
+=
delta
;
}
/* We allocate the output same size as input, this is overkill.
...
...
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