OSDN Git Service

avformat/webvttdec: Dont skip over a never checked byte after -->
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 7 Jan 2014 03:08:18 +0000 (04:08 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 7 Jan 2014 03:09:19 +0000 (04:09 +0100)
Fixes use of uninitialized memory
Fixes: msan_uninit-mem_7f49667d83db_3396_WebVTT_capability_tester.vtt
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/webvttdec.c

index 0654485..e457e8f 100644 (file)
@@ -119,7 +119,7 @@ static int webvtt_read_header(AVFormatContext *s)
             break;
         if (!(p = strstr(p, "-->")))
             break;
-        p += 3;
+        p += 2;
         do p++; while (*p == ' ' || *p == '\t');
         if ((ts_end = read_ts(p)) == AV_NOPTS_VALUE)
             break;