[FFmpeg-cvslog] avformat/mpc: attempt to allocate a packet that is not smaller than the data inside it
Michael Niedermayer
git at videolan.org
Wed Jun 25 17:01:47 CEST 2014
ffmpeg | branch: release/2.0 | Michael Niedermayer <michaelni at gmx.at> | Sun Jun 15 00:49:02 2014 +0200| [1e9ae5dbbd676b53906d3340b5acaf0e77cb6d00] | 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>
(cherry picked from commit 86a9370e2b91d67375e66a06d6eb573b5a017775)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1e9ae5dbbd676b53906d3340b5acaf0e77cb6d00
---
libavformat/mpc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mpc.c b/libavformat/mpc.c
index b0f6f53..a46919b 100644
--- a/libavformat/mpc.c
+++ b/libavformat/mpc.c
@@ -153,7 +153,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