From 48cf0f1c18f2f91363601c94177c71bc3ac13b8e Mon Sep 17 00:00:00 2001 From: Duncan Salerno Date: Sat, 22 Sep 2012 21:17:36 +0100 Subject: http: only send range header when necessary Signed-off-by: Michael Niedermayer --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/http.c') diff --git a/libavformat/http.c b/libavformat/http.c index 85ed7a5c81..669fdf408d 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -411,7 +411,7 @@ static int http_connect(URLContext *h, const char *path, const char *local_path, if (!has_header(s->headers, "\r\nAccept: ")) len += av_strlcpy(headers + len, "Accept: */*\r\n", sizeof(headers) - len); - if (!has_header(s->headers, "\r\nRange: ") && !post) + if (!has_header(s->headers, "\r\nRange: ") && !post && s->off > 0) len += av_strlcatf(headers + len, sizeof(headers) - len, "Range: bytes=%"PRId64"-\r\n", s->off); -- cgit v1.2.3