Commit 390c6ee4 authored by Michael Niedermayer's avatar Michael Niedermayer

tools/target_dec_fuzzer: Fix memleak on open failure

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c53bf8c9
......@@ -180,8 +180,10 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
}
int res = avcodec_open2(ctx, c, NULL);
if (res < 0)
if (res < 0) {
av_free(ctx);
return 0; // Failure of avcodec_open2() does not imply that a issue was found
}
FDBCreate(&buffer);
int got_frame;
......
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