Commit 508ce583 authored by Michael Niedermayer's avatar Michael Niedermayer

tools/target_dec_fuzzer: Free parser in case of avcodec_open2() failure

Fixes: memleak
Fixes: part of 15529/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LIBVPX_VP8_fuzzer-5140143700180992

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 99f95f39
...@@ -203,6 +203,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { ...@@ -203,6 +203,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
if (res < 0) { if (res < 0) {
av_free(ctx); av_free(ctx);
av_free(parser_avctx); av_free(parser_avctx);
av_parser_close(parser);
return 0; // Failure of avcodec_open2() does not imply that a issue was found return 0; // Failure of avcodec_open2() does not imply that a issue was found
} }
parser_avctx->codec_id = ctx->codec_id; parser_avctx->codec_id = ctx->codec_id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment