mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mjpegdec: Check for non ls PAL8
Fixes: Null-dereference READ in av_malloc Fixes: 15002/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_THP_fuzzer-5643474625363968 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e5f92f3fba
commit
442375fee7
|
@ -719,7 +719,9 @@ unk_pixfmt:
|
|||
}
|
||||
|
||||
if ((s->rgb && !s->lossless && !s->ls) ||
|
||||
(!s->rgb && s->ls && s->nb_components > 1)) {
|
||||
(!s->rgb && s->ls && s->nb_components > 1) ||
|
||||
(s->avctx->pix_fmt == AV_PIX_FMT_PAL8 && !s->ls)
|
||||
) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "Unsupported coding and pixel format combination\n");
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue