]> git.sesse.net Git - ffmpeg/commitdiff
avformat/webmdashenc: Check id in adaption_sets
authorMichael Niedermayer <michael@niedermayer.cc>
Wed, 13 Feb 2019 09:15:04 +0000 (10:15 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 17 Feb 2019 09:29:42 +0000 (10:29 +0100)
Fixes: out of array access
Found-by: Wenxiang Qian
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/webmdashenc.c

index 1280d8a763beea2903361fce0f4ae8adb4f2ad8a..26b87273048fe09f34418c03096e02d63261d2a8 100644 (file)
@@ -466,6 +466,7 @@ static int parse_adaptation_sets(AVFormatContext *s)
             continue;
         else if (state == new_set && !strncmp(p, "id=", 3)) {
             void *mem = av_realloc(w->as, sizeof(*w->as) * (w->nb_as + 1));
+            const char *comma;
             if (mem == NULL)
                 return AVERROR(ENOMEM);
             w->as = mem;
@@ -474,6 +475,11 @@ static int parse_adaptation_sets(AVFormatContext *s)
             w->as[w->nb_as - 1].streams = NULL;
             p += 3; // consume "id="
             q = w->as[w->nb_as - 1].id;
+            comma = strchr(p, ',');
+            if (!comma || comma - p >= sizeof(w->as[w->nb_as - 1].id)) {
+                av_log(s, AV_LOG_ERROR, "'id' in 'adaptation_sets' is malformed.\n");
+                return AVERROR(EINVAL);
+            }
             while (*p != ',') *q++ = *p++;
             *q = 0;
             p++;