Browse Source

tools/target_dec_fuzzer: fix memleak of extradata

Fixes: memleak
Fixes: 15535/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMACKER_fuzzer-5692162424963072

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Michael Niedermayer 6 years ago
parent
commit
42a2edcc1d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/target_dec_fuzzer.c

+ 1
- 1
tools/target_dec_fuzzer.c View File

@@ -201,7 +201,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {

int res = avcodec_open2(ctx, c, NULL);
if (res < 0) {
av_free(ctx);
avcodec_free_context(&ctx);
av_free(parser_avctx);
av_parser_close(parser);
return 0; // Failure of avcodec_open2() does not imply that a issue was found


Loading…
Cancel
Save