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
281945f4
Kaydet (Commit)
281945f4
authored
May 28, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
stream's read() returns more bytes than requested.
üst
5758fa78
37a79a12
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
test_io.py
Lib/test/test_io.py
+9
-0
NEWS
Misc/NEWS
+3
-0
bufferedio.c
Modules/_io/bufferedio.c
+8
-0
No files found.
Lib/test/test_io.py
Dosyayı görüntüle @
281945f4
...
...
@@ -3027,6 +3027,15 @@ class MiscIOTest(unittest.TestCase):
class
CMiscIOTest
(
MiscIOTest
):
io
=
io
def
test_readinto_buffer_overflow
(
self
):
# Issue #18025
class
BadReader
(
self
.
io
.
BufferedIOBase
):
def
read
(
self
,
n
=-
1
):
return
b
'x'
*
10
**
6
bufio
=
BadReader
()
b
=
bytearray
(
2
)
self
.
assertRaises
(
ValueError
,
bufio
.
readinto
,
b
)
class
PyMiscIOTest
(
MiscIOTest
):
io
=
pyio
...
...
Misc/NEWS
Dosyayı görüntüle @
281945f4
...
...
@@ -96,6 +96,9 @@ Core and Builtins
Library
-------
- Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
stream'
s
read
()
returns
more
bytes
than
requested
.
-
Issue
#
18011
:
base64
.
b32decode
()
now
raises
a
binascii
.
Error
if
there
are
non
-
alphabet
characters
present
in
the
input
string
to
conform
a
docstring
.
Updated
the
module
documentation
.
...
...
Modules/_io/bufferedio.c
Dosyayı görüntüle @
281945f4
...
...
@@ -69,6 +69,14 @@ bufferediobase_readinto(PyObject *self, PyObject *args)
}
len
=
Py_SIZE
(
data
);
if
(
len
>
buf
.
len
)
{
PyErr_Format
(
PyExc_ValueError
,
"read() returned too much data: "
"%zd bytes requested, %zd returned"
,
buf
.
len
,
len
);
Py_DECREF
(
data
);
goto
error
;
}
memcpy
(
buf
.
buf
,
PyBytes_AS_STRING
(
data
),
len
);
PyBuffer_Release
(
&
buf
);
...
...
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