Skip to content
Snippets Groups Projects
Commit 9f0077cc authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

tools/target_dec_fuzzer: Fix parser_avctx memleak on error path

Fixes: oss-fuzz issue 9195

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg


Signed-off-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent d08d4a8c
No related branches found
No related tags found
No related merge requests found
...@@ -190,6 +190,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { ...@@ -190,6 +190,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
int res = avcodec_open2(ctx, c, NULL); int res = avcodec_open2(ctx, c, NULL);
if (res < 0) { if (res < 0) {
av_free(ctx); av_free(ctx);
av_free(parser_avctx);
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
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment