mirror of https://git.ffmpeg.org/ffmpeg.git
tools/target_dec_fuzzer: Fix extradata duplication
Fixes: out of array access Fixes: 36340/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-5872546875572224.fuzz 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
fc300613be
commit
54b798638e
|
@ -317,7 +317,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
}
|
||||
parser_avctx->codec_id = ctx->codec_id;
|
||||
parser_avctx->extradata_size = ctx->extradata_size;
|
||||
parser_avctx->extradata = av_memdup(ctx->extradata, ctx->extradata_size);
|
||||
parser_avctx->extradata = ctx->extradata ? av_memdup(ctx->extradata, ctx->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE) : NULL;
|
||||
|
||||
|
||||
int got_frame;
|
||||
|
|
Loading…
Reference in New Issue