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
18b7fcc7
Kaydet (Commit)
18b7fcc7
authored
Eki 21, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge #14398: Fix size truncation and overflow bugs in bz2 module.
üst
55084125
5f8f0d67
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
9 deletions
+26
-9
NEWS
Misc/NEWS
+2
-0
_bz2module.c
Modules/_bz2module.c
+24
-9
No files found.
Misc/NEWS
Dosyayı görüntüle @
18b7fcc7
...
...
@@ -46,6 +46,8 @@ Core and Builtins
Library
-------
- Issue #14398: Fix size truncation and overflow bugs in the bz2 module.
- Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.
...
...
Modules/_bz2module.c
Dosyayı görüntüle @
18b7fcc7
...
...
@@ -123,7 +123,14 @@ grow_buffer(PyObject **buf)
giving us amortized linear-time behavior. Use a less-than-double
growth factor to avoid excessive allocation. */
size_t
size
=
PyBytes_GET_SIZE
(
*
buf
);
return
_PyBytes_Resize
(
buf
,
size
+
(
size
>>
3
)
+
6
);
size_t
new_size
=
size
+
(
size
>>
3
)
+
6
;
if
(
new_size
>
size
)
{
return
_PyBytes_Resize
(
buf
,
new_size
);
}
else
{
/* overflow */
PyErr_SetString
(
PyExc_OverflowError
,
"Unable to allocate buffer - output too large"
);
return
-
1
;
}
}
...
...
@@ -169,10 +176,14 @@ compress(BZ2Compressor *c, char *data, size_t len, int action)
break
;
if
(
c
->
bzs
.
avail_out
==
0
)
{
if
(
grow_buffer
(
&
result
)
<
0
)
goto
error
;
c
->
bzs
.
next_out
=
PyBytes_AS_STRING
(
result
)
+
data_size
;
c
->
bzs
.
avail_out
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
size_t
buffer_left
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
if
(
buffer_left
==
0
)
{
if
(
grow_buffer
(
&
result
)
<
0
)
goto
error
;
c
->
bzs
.
next_out
=
PyBytes_AS_STRING
(
result
)
+
data_size
;
buffer_left
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
}
c
->
bzs
.
avail_out
=
MIN
(
buffer_left
,
UINT_MAX
);
}
}
if
(
data_size
!=
PyBytes_GET_SIZE
(
result
))
...
...
@@ -390,10 +401,14 @@ decompress(BZ2Decompressor *d, char *data, size_t len)
len
-=
d
->
bzs
.
avail_in
;
}
if
(
d
->
bzs
.
avail_out
==
0
)
{
if
(
grow_buffer
(
&
result
)
<
0
)
goto
error
;
d
->
bzs
.
next_out
=
PyBytes_AS_STRING
(
result
)
+
data_size
;
d
->
bzs
.
avail_out
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
size_t
buffer_left
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
if
(
buffer_left
==
0
)
{
if
(
grow_buffer
(
&
result
)
<
0
)
goto
error
;
d
->
bzs
.
next_out
=
PyBytes_AS_STRING
(
result
)
+
data_size
;
buffer_left
=
PyBytes_GET_SIZE
(
result
)
-
data_size
;
}
d
->
bzs
.
avail_out
=
MIN
(
buffer_left
,
UINT_MAX
);
}
}
if
(
data_size
!=
PyBytes_GET_SIZE
(
result
))
...
...
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