summaryrefslogtreecommitdiff
path: root/libavcodec/argo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-02-27 00:59:25 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2022-03-28 23:18:56 +0200
commit849a20343dbf68ed5c9902bd53231b8a338b10e6 (patch)
tree4605aca01a4eed727f05928dcf6e5c4c9cdc9145 /libavcodec/argo.c
parent95322e07673885ebcbb8fd54f30a9b8f17d5be6a (diff)
downloadffmpeg-849a20343dbf68ed5c9902bd53231b8a338b10e6.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>
Diffstat (limited to 'libavcodec/argo.c')
-rw-r--r--libavcodec/argo.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/argo.c b/libavcodec/argo.c
index 66f3d96480..58cc9984bc 100644
--- a/libavcodec/argo.c
+++ b/libavcodec/argo.c
@@ -607,6 +607,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)