diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-02-04 00:44:32 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-02-16 20:09:36 +0100 |
commit | de0402767928fe0acbbc7a87b945853f46d7f45e (patch) | |
tree | 50c3353faa2758187041907fed260b708f721915 /libavformat | |
parent | 437cd15ae3cd55fa2e106301e39601c5dca3fd5b (diff) | |
download | ffmpeg-de0402767928fe0acbbc7a87b945853f46d7f45e.tar.gz |
avformat/utils: Fix invalid NULL pointer operation in ff_parse_key_value()
Fixes: pointer index expression with base 0x000000000000 overflowed to 0xffffffffffffffff
Fixes: 44012/clusterfuzz-testcase-minimized-ffmpeg_dem_HLS_fuzzer-5670607746891776
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 59328aabd2c789ae053e18a62a20a7addfd4d069)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index a737f2a4b0..27fded3ca9 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4152,7 +4152,7 @@ void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf, key_len = ptr - key; callback_get_buf(context, key, key_len, &dest, &dest_len); - dest_end = dest + dest_len - 1; + dest_end = dest ? dest + dest_len - 1 : NULL; if (*ptr == '\"') { ptr++; |