summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libavformat/apngdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c
index a0a475a..6deff3b 100644
--- a/libavformat/apngdec.c
+++ b/libavformat/apngdec.c
@@ -150,7 +150,8 @@ static int apng_read_header(AVFormatContext *s)
AVIOContext *pb = s->pb;
uint32_t len, tag;
AVStream *st;
- int ret = AVERROR_INVALIDDATA, acTL_found = 0;
+ int acTL_found = 0;
+ int64_t ret = AVERROR_INVALIDDATA;
/* verify PNGSIG */
if (avio_rb64(pb) != PNGSIG)
OpenPOWER on IntegriCloud