mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-13 21:26:33 +02:00
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>
This commit is contained in:
parent
fa8fd0808f
commit
966cbfbc83
@ -170,7 +170,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||||||
|
|
||||||
int res = avcodec_open2(ctx, c, NULL);
|
int res = avcodec_open2(ctx, c, NULL);
|
||||||
if (res < 0)
|
if (res < 0)
|
||||||
return res;
|
return 0; // Failure of avcodec_open2() does not imply that a issue was found
|
||||||
|
|
||||||
FDBCreate(&buffer);
|
FDBCreate(&buffer);
|
||||||
int got_frame;
|
int got_frame;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user