OSDN Git Service

avio: exit early in fill_buffer without read_packet
authorJanne Grunau <janne-libav@jannau.net>
Tue, 3 Jan 2012 17:11:36 +0000 (18:11 +0100)
committerJanne Grunau <janne-libav@jannau.net>
Wed, 4 Jan 2012 10:18:24 +0000 (11:18 +0100)
Fixes an invalid free() with ass in avi. The sample in bug 98 passes
parts of AVPacket.data as buffer for the AVIOContext. Since the packet
is quite large fill_buffer tries to reallocate the buffer before doing
nothing. Fixes bug 98.

libavformat/aviobuf.c

index 898f35d..dbbbba5 100644 (file)
@@ -565,6 +565,10 @@ static void fill_buffer(AVIOContext *s)
     int len= s->buffer_size - (dst - s->buffer);
     int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE;
 
+    /* can't fill the buffer without read_packet, just set EOF if appropiate */
+    if (!s->read_packet && s->buf_ptr >= s->buf_end)
+        s->eof_reached = 1;
+
     /* no need to do anything if EOF already reached */
     if (s->eof_reached)
         return;