[FFmpeg-cvslog] avformat/mpc: attempt to allocate a packet that is not smaller than the data inside it
Michael Niedermayer
git at videolan.org
Mon Jun 23 18:52:57 CEST 2014
ffmpeg | branch: release/1.2 | Michael Niedermayer <michaelni at gmx.at> | Sun Jun 15 00:49:02 2014 +0200| [c2b72eac6cfe5170c27db98cbc940540a91e3802] | 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=c2b72eac6cfe5170c27db98cbc940540a91e3802
---
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