avcodec/escape124: Do not return random numbers
Fixes: out of array access Fixes: 62164/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ESCAPE124_fuzzer-6035022714634240 Fixes: 62164/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ESCAPE124_fuzzer-6422176201572352 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 fe6d46490f5ea9155fe0601b6246960ae17317fc) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
454eac7b87
commit
ee6d5dd13b
@ -238,7 +238,7 @@ static int escape124_decode_frame(AVCodecContext *avctx,
|
|||||||
if ((ret = av_frame_ref(frame, s->frame)) < 0)
|
if ((ret = av_frame_ref(frame, s->frame)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
return frame_size;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < 3; i++) {
|
for (i = 0; i < 3; i++) {
|
||||||
@ -372,7 +372,7 @@ static int escape124_decode_frame(AVCodecContext *avctx,
|
|||||||
|
|
||||||
*got_frame = 1;
|
*got_frame = 1;
|
||||||
|
|
||||||
return frame_size;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user