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

github.com/FFmpeg/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-04-27 03:18:03 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-04-27 05:25:31 +0300
commit966cbfbc83db34f50616fe582d1a53f81d292282 (patch)
treea4dfbe817b8edcaf344e889a84223eb49c01cb0b /tools
parentfa8fd0808f1086fc85abba5cf123faf41da49305 (diff)
tools/target_dec_fuzzer: Fix return code on open failure
Fixes: 1271/clusterfuzz-testcase-minimized-6095220498235392 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tools')
-rw-r--r--tools/target_dec_fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index dc72fd8b5d..e6a942cb30 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -170,7 +170,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
int res = avcodec_open2(ctx, c, NULL);
if (res < 0)
- return res;
+ return 0; // Failure of avcodec_open2() does not imply that a issue was found
FDBCreate(&buffer);
int got_frame;