summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/target_dec_fuzzer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index 19423e27f2..5a0b53e546 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -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;