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
8335acbf
Kaydet (Commit)
8335acbf
authored
Eyl 17, 2007
tarafından
Sean Reifscheider
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
issue1597011: Fix for bz2 module corner-case error due to error checking bug.
üst
0153159e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
23 deletions
+17
-23
bz2module.c
Modules/bz2module.c
+17
-23
No files found.
Modules/bz2module.c
Dosyayı görüntüle @
8335acbf
...
...
@@ -235,6 +235,7 @@ Util_GetLine(BZ2FileObject *f, int n)
size_t
increment
;
/* amount to increment the buffer */
PyObject
*
v
;
int
bzerror
;
int
bytes_read
;
int
newlinetypes
=
f
->
f_newlinetypes
;
int
skipnextlf
=
f
->
f_skipnextlf
;
int
univ_newline
=
f
->
f_univ_newline
;
...
...
@@ -249,24 +250,22 @@ Util_GetLine(BZ2FileObject *f, int n)
for
(;;)
{
Py_BEGIN_ALLOW_THREADS
if
(
univ_newline
)
{
while
(
1
)
{
BZ2_bzRead
(
&
bzerror
,
f
->
fp
,
&
c
,
1
);
f
->
pos
++
;
if
(
bzerror
!=
BZ_OK
||
buf
==
end
)
break
;
while
(
buf
!=
end
)
{
bytes_read
=
BZ2_bzRead
(
&
bzerror
,
f
->
fp
,
&
c
,
1
);
f
->
pos
++
;
if
(
bytes_read
==
0
)
break
;
if
(
univ_newline
)
{
if
(
skipnextlf
)
{
skipnextlf
=
0
;
if
(
c
==
'\n'
)
{
/* Seeing a \n here with
* skipnextlf true means we
/* Seeing a \n here with skipnextlf true means we
* saw a \r before.
*/
newlinetypes
|=
NEWLINE_CRLF
;
BZ2_bzRead
(
&
bzerror
,
f
->
fp
,
&
c
,
1
);
if
(
bzerror
!=
BZ_OK
)
break
;
if
(
bzerror
!=
BZ_OK
)
break
;
bytes_read
=
BZ2_bzRead
(
&
bzerror
,
f
->
fp
,
&
c
,
1
);
f
->
pos
++
;
if
(
bytes_read
==
0
)
break
;
}
else
{
newlinetypes
|=
NEWLINE_CR
;
}
...
...
@@ -274,19 +273,14 @@ Util_GetLine(BZ2FileObject *f, int n)
if
(
c
==
'\r'
)
{
skipnextlf
=
1
;
c
=
'\n'
;
}
else
if
(
c
==
'\n'
)
}
else
if
(
c
==
'\n'
)
newlinetypes
|=
NEWLINE_LF
;
*
buf
++
=
c
;
if
(
c
==
'\n'
)
break
;
}
if
(
bzerror
==
BZ_STREAM_END
&&
skipnextlf
)
newlinetypes
|=
NEWLINE_CR
;
}
else
/* If not universal newlines use the normal loop */
do
{
BZ2_bzRead
(
&
bzerror
,
f
->
fp
,
&
c
,
1
);
f
->
pos
++
;
*
buf
++
=
c
;
}
while
(
bzerror
==
BZ_OK
&&
c
!=
'\n'
&&
buf
!=
end
);
*
buf
++
=
c
;
if
(
bzerror
!=
BZ_OK
||
c
==
'\n'
)
break
;
}
if
(
univ_newline
&&
bzerror
==
BZ_STREAM_END
&&
skipnextlf
)
newlinetypes
|=
NEWLINE_CR
;
Py_END_ALLOW_THREADS
f
->
f_newlinetypes
=
newlinetypes
;
f
->
f_skipnextlf
=
skipnextlf
;
...
...
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