diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-02-27 00:59:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-04-06 20:27:35 +0200 |
commit | 310a060e77980d92e5fc2c0983d6aa7c3b84a0a7 (patch) | |
tree | 5f6b9a4e429a6517da59b1b600bfbfadbcebda1b | |
parent | e9e2ddbc6c78cc18b76093617f82c920e58a8d1f (diff) | |
download | ffmpeg-310a060e77980d92e5fc2c0983d6aa7c3b84a0a7.tar.gz |
avcodec/argo: Check packet size
Fixes: Timeout
Fixes: 45052/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ARGO_fuzzer-6033489206575104
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 1bed27acefaab1b4c1813b8adc6468ca952a43f3)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/argo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/argo.c b/libavcodec/argo.c index f633ec2691..8f58e682f6 100644 --- a/libavcodec/argo.c +++ b/libavcodec/argo.c @@ -608,6 +608,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, uint32_t chunk; int ret; + if (avpkt->size < 4) + return AVERROR_INVALIDDATA; + bytestream2_init(gb, avpkt->data, avpkt->size); if ((ret = ff_reget_buffer(avctx, frame, 0)) < 0) |