From 0e3d6e17dea758fdb7d0adfc57f7655551ab32b3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 20 Feb 2015 19:31:10 +0100 Subject: [PATCH] avformat/apngdec: Use 64bit ret to avoid overflow Signed-off-by: Michael Niedermayer --- libavformat/apngdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index 5e7a4a11502..a0a475a350f 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; -- 2.39.2