From aff4137d5f29d0ea1382520a9143527814b45072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 20 Jul 2010 09:58:30 +0000 Subject: [PATCH] Remove an assert that was no longer correct nor relevant Originally committed as revision 24344 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/aviobuf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index f311d51bd2..31ce64e581 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -328,8 +328,6 @@ static void fill_buffer(ByteIOContext *s) int len= s->buffer_size - (dst - s->buffer); int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE; - assert(s->buf_ptr == s->buf_end); - /* no need to do anything if EOF already reached */ if (s->eof_reached) return;