]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/http.c
Merge commit '5dd9a4b88b287bf8c93520afda7becb1ad0d1894'
[ffmpeg] / libavformat / http.c
index d06103ab6d8a8f555d5726026cc301ab4e595d43..668cd51986680c5e03ee3d4f7feadd87327efd5a 100644 (file)
@@ -1248,6 +1248,9 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
     s->willclose        = 0;
     s->end_chunked_post = 0;
     s->end_header       = 0;
+#if CONFIG_ZLIB
+    s->compressed       = 0;
+#endif
     if (post && !s->post_data && !send_expect_100) {
         /* Pretend that it did work. We didn't read any header yet, since
          * we've still to send the POST data, but the code calling this
@@ -1326,7 +1329,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size)
     }
     if (len > 0) {
         s->off += len;
-        if (s->chunksize > 0) {
+        if (s->chunksize > 0 && s->chunksize != UINT64_MAX) {
             av_assert0(s->chunksize >= len);
             s->chunksize -= len;
         }