mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-21 07:59:43 +08:00
tools/target_dec_fuzzer: Fix memleak on open failure
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -180,8 +180,10 @@ 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) {
|
||||||
|
av_free(ctx);
|
||||||
return 0; // Failure of avcodec_open2() does not imply that a issue was found
|
return 0; // Failure of avcodec_open2() does not imply that a issue was found
|
||||||
|
}
|
||||||
|
|
||||||
FDBCreate(&buffer);
|
FDBCreate(&buffer);
|
||||||
int got_frame;
|
int got_frame;
|
||||||
|
Reference in New Issue
Block a user