diff --git a/libavformat/http.c b/libavformat/http.c index 64ca4ae54825482c134bc1610ad76897ff4d0781..3e172e364551258a32f79a8c3c8ccef25aee0b0d 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -890,7 +890,6 @@ static int http_read_stream(URLContext *h, uint8_t *buf, int size) if (!s->chunksize) { char line[32]; - for(;;) { do { if ((err = http_get_line(s, line, sizeof(line))) < 0) return err; @@ -902,8 +901,6 @@ static int http_read_stream(URLContext *h, uint8_t *buf, int size) if (!s->chunksize) return 0; - break; - } } size = FFMIN(size, s->chunksize); }