[FFmpeg-cvslog] avformat/mpc: attempt to allocate a packet that is not smaller than the data inside it

Michael Niedermayer git at videolan.org
Sun Jun 15 01:39:57 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Jun 15 00:49:02 2014 +0200| [86a9370e2b91d67375e66a06d6eb573b5a017775] | committer: Michael Niedermayer

avformat/mpc: attempt to allocate a packet that is not smaller than the data inside it

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=86a9370e2b91d67375e66a06d6eb573b5a017775
---

 libavformat/mpc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mpc.c b/libavformat/mpc.c
index c3faebe..8f8ac9c 100644
--- a/libavformat/mpc.c
+++ b/libavformat/mpc.c
@@ -152,7 +152,7 @@ static int mpc_read_packet(AVFormatContext *s, AVPacket *pkt)
     }
     c->curbits = (curbits + size2) & 0x1F;
 
-    if ((ret = av_new_packet(pkt, size)) < 0)
+    if ((ret = av_new_packet(pkt, size + 4)) < 0)
         return ret;
 
     pkt->data[0] = curbits;



More information about the ffmpeg-cvslog mailing list