diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-11 02:25:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-12 03:23:03 +0100 |
commit | 04bd1b38ee6b8df410d0ab8d4949546b6c4af26a (patch) | |
tree | cdee75cf3fa84ef997c1c2c964a050337c14b0b1 /libavcodec/htmlsubtitles.c | |
parent | cdb5479c9ddc886f0b8661db585405ebab343e80 (diff) | |
download | ffmpeg-04bd1b38ee6b8df410d0ab8d4949546b6c4af26a.tar.gz |
avcodec/htmlsubtitles: Fix reading one byte beyond the array
Fixes: fuzz-2-ffmpeg_SUBTITLE_AV_CODEC_ID_SUBRIP_fuzzer
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/htmlsubtitles.c')
-rw-r--r-- | libavcodec/htmlsubtitles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c index a2cd40fad3..8b57febd26 100644 --- a/libavcodec/htmlsubtitles.c +++ b/libavcodec/htmlsubtitles.c @@ -146,7 +146,7 @@ void ff_htmlmarkup_to_ass(void *log_ctx, AVBPrint *dst, const char *in) if (stack[sptr].param[i][0]) av_bprintf(dst, "%s", stack[sptr].param[i]); } - } else if (!tagname[1] && strspn(tagname, "bisu") == 1) { + } else if (tagname[0] && !tagname[1] && strspn(tagname, "bisu") == 1) { av_bprintf(dst, "{\\%c%d}", tagname[0], !tag_close); } else { unknown = 1; |