Commit 45c611a9 authored by Ronald S. Bultje's avatar Ronald S. Bultje

Reset chunksize back to zero (= no chunked encoding) after each new open

connection (e.g. a seek). This fixes the theoretical case where a server
sends a file first using chunked encoding, and then using non-chunked
encoding.

Originally committed as revision 23665 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f3724695
......@@ -152,7 +152,6 @@ static int http_open(URLContext *h, const char *uri, int flags)
}
h->priv_data = s;
s->filesize = -1;
s->chunksize = -1;
s->is_chunked = 1;
s->off = 0;
s->init = 0;
......@@ -331,6 +330,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
s->line_count = 0;
s->off = 0;
s->filesize = -1;
s->chunksize = -1;
if (post) {
/* always use chunked encoding for upload data */
s->chunksize = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment