mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
http chunked: avoid unsafe cases when chunks > 2GB.
This and previous commit were inspired by Jonas' mail on elinks-dev.
This commit is contained in:
parent
eb1fe8ee5a
commit
a4140594f1
@ -1224,9 +1224,13 @@ read_chunked_http_data(struct connection *conn, struct read_buffer *rb)
|
|||||||
if (zero) http->chunk_remaining = 0;
|
if (zero) http->chunk_remaining = 0;
|
||||||
len = http->chunk_remaining;
|
len = http->chunk_remaining;
|
||||||
|
|
||||||
/* Maybe everything necessary didn't come yet.. */
|
if (http->chunk_remaining) {
|
||||||
int_upper_bound(&len, rb->length);
|
/* Maybe everything necessary didn't come yet..
|
||||||
|
* This handle unlikely case when len < 0
|
||||||
|
* or http->chunk_remaining > 4GB and len == 0 */
|
||||||
|
int_bounds(&len, 1, rb->length);
|
||||||
conn->received += len;
|
conn->received += len;
|
||||||
|
}
|
||||||
|
|
||||||
data = decompress_data(conn, rb->data, len, &data_len);
|
data = decompress_data(conn, rb->data, len, &data_len);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user