Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-04 14:31:02 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-04 14:51:50 +0300
commit390c6ee42c4971d9809aa1fdee1f4c1d5e98b6ed (patch)
treeeaa6d0d46f20a876c02e053c0b6a1efa6f355569 /tools
parentc53bf8c9b8ad7a2dc786d5749598c4ac67c4ad2d (diff)
tools/target_dec_fuzzer: Fix memleak on open failure
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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;