[FFmpeg-cvslog] avformat/apngdec: Use 64bit ret to avoid overflow
Michael Niedermayer
git at videolan.org
Fri Feb 20 19:47:09 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Feb 20 19:31:10 2015 +0100| [0e3d6e17dea758fdb7d0adfc57f7655551ab32b3] | committer: Michael Niedermayer
avformat/apngdec: Use 64bit ret to avoid overflow
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e3d6e17dea758fdb7d0adfc57f7655551ab32b3
---
libavformat/apngdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c
index 5e7a4a1..a0a475a 100644
--- a/libavformat/apngdec.c
+++ b/libavformat/apngdec.c
@@ -321,7 +321,7 @@ static int decode_fctl_chunk(AVFormatContext *s, APNGDemuxContext *ctx, AVPacket
static int apng_read_packet(AVFormatContext *s, AVPacket *pkt)
{
APNGDemuxContext *ctx = s->priv_data;
- int ret;
+ int64_t ret;
int64_t size;
AVIOContext *pb = s->pb;
uint32_t len, tag;
More information about the ffmpeg-cvslog
mailing list