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
cc024d18
Kaydet (Commit)
cc024d18
authored
Eki 29, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure
üst
af8b7e82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
iobase.c
Modules/_io/iobase.c
+8
-5
No files found.
Modules/_io/iobase.c
Dosyayı görüntüle @
cc024d18
/*
An implementation of the I/O abstract base classes hierarchy
as defined by PEP 3116 - "New I/O"
Classes defined here: IOBase, RawIOBase.
Written by Amaury Forgeot d'Arc and Antoine Pitrou
*/
...
...
@@ -19,7 +19,7 @@
typedef
struct
{
PyObject_HEAD
PyObject
*
dict
;
PyObject
*
weakreflist
;
}
iobase
;
...
...
@@ -530,7 +530,10 @@ iobase_readline(PyObject *self, PyObject *args)
}
old_size
=
PyByteArray_GET_SIZE
(
buffer
);
PyByteArray_Resize
(
buffer
,
old_size
+
PyBytes_GET_SIZE
(
b
));
if
(
PyByteArray_Resize
(
buffer
,
old_size
+
PyBytes_GET_SIZE
(
b
))
<
0
)
{
Py_DECREF
(
b
);
goto
fail
;
}
memcpy
(
PyByteArray_AS_STRING
(
buffer
)
+
old_size
,
PyBytes_AS_STRING
(
b
),
PyBytes_GET_SIZE
(
b
));
...
...
@@ -835,7 +838,7 @@ rawiobase_readall(PyObject *self, PyObject *args)
int
r
;
PyObject
*
chunks
=
PyList_New
(
0
);
PyObject
*
result
;
if
(
chunks
==
NULL
)
return
NULL
;
...
...
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