mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02: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
|
||||
if (!strcmp(fmt->name, "hls"))
|
||||
if (fmt && !strcmp(fmt->name, "hls"))
|
||||
interrupt_counter &= 31;
|
||||
|
||||
if (!io_buffer_size || size / io_buffer_size > maxblocks)
|
||||
|
Loading…
Reference in New Issue
Block a user