From ecb4a895b29ac07c5a650956ca766ef14af978de Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 12 Mar 2007 14:51:18 +0000 Subject: [PATCH] Properly initialize filesize during input buffer initialization. patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 8343 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/http.c b/libavformat/http.c index 46b18140f8..9e8fce59ab 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -242,6 +242,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr, s->buf_end = s->buffer; s->line_count = 0; s->off = 0; + s->filesize = -1; if (post) { sleep(1); return 0;