diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-20 19:31:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-20 19:31:10 +0100 |
commit | 0e3d6e17dea758fdb7d0adfc57f7655551ab32b3 (patch) | |
tree | a9926eebffe67f691fcb16ca4394b4c85e3fa981 | |
parent | d4936d28a11fac6c9c4b4df9625185f93b086986 (diff) | |
download | ffmpeg-0e3d6e17dea758fdb7d0adfc57f7655551ab32b3.tar.gz |
avformat/apngdec: Use 64bit ret to avoid overflow
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/apngdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index 5e7a4a1150..a0a475a350 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; |