mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-10 11:13:01 +00:00
tools/target_dem_fuzzer: Check fmt before dereferencing
Fixes: NULL pointer dereference Fixes: 44884/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-4656748688965632 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
68bc9773cf
commit
c900f2e42c
@ -173,7 +173,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// HLS uses a loop with sleep, we thus must breakout or we timeout
|
// HLS uses a loop with sleep, we thus must breakout or we timeout
|
||||||
if (!strcmp(fmt->name, "hls"))
|
if (fmt && !strcmp(fmt->name, "hls"))
|
||||||
interrupt_counter &= 31;
|
interrupt_counter &= 31;
|
||||||
|
|
||||||
if (!io_buffer_size || size / io_buffer_size > maxblocks)
|
if (!io_buffer_size || size / io_buffer_size > maxblocks)
|
||||||
|
Loading…
Reference in New Issue
Block a user