aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-02-10 22:28:20 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2021-09-09 13:53:29 +0200
commitb713f01bb3b11eeea4c9f76959d15594fd8718c2 (patch)
tree4c40656a7a93488241eb8c7ad28d32b09c30d0a3 /libavcodec
parentd4dc6d2041395dddf05f1e0cf62316577864297f (diff)
downloadffmpeg-b713f01bb3b11eeea4c9f76959d15594fd8718c2.tar.gz
avcodec/pnm_parser: Check av_image_get_buffer_size() for failure
Fixes: out of array access Fixes: 30135/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PBM_fuzzer-4997145650397184 Fixes: 30208/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PGMYUV_fuzzer-5605891665690624.fuzz Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 5314a4996cc76e2a8534c74a66f5181e95ac64fc) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/pnm_parser.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/pnm_parser.c b/libavcodec/pnm_parser.c
index 9bf1fdcece..0d6c592b26 100644
--- a/libavcodec/pnm_parser.c
+++ b/libavcodec/pnm_parser.c
@@ -62,8 +62,10 @@ retry:
} else if (pnmctx.type < 4) {
next = END_NOT_FOUND;
} else {
- next = pnmctx.bytestream - pnmctx.bytestream_start + skip
- + av_image_get_buffer_size(avctx->pix_fmt, avctx->width, avctx->height, 1);
+ int ret = av_image_get_buffer_size(avctx->pix_fmt, avctx->width, avctx->height, 1);
+ next = pnmctx.bytestream - pnmctx.bytestream_start + skip;
+ if (ret >= 0)
+ next += ret;
if (pnmctx.bytestream_start != buf + skip)
next -= pc->index;
if (next > buf_size)