matroskadec: Check that .lang was allocated and set before reading it
authorMartin Storsjö <martin@martin.st>
Tue, 3 Sep 2013 09:10:50 +0000 (12:10 +0300)
committerMartin Storsjö <martin@martin.st>
Tue, 3 Sep 2013 19:57:15 +0000 (22:57 +0300)
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/matroskadec.c

index 9b116b0..d5b6071 100644 (file)
@@ -1189,7 +1189,8 @@ static void matroska_convert_tag(AVFormatContext *s, EbmlList *list,
     int i;
 
     for (i=0; i < list->nb_elem; i++) {
-        const char *lang = strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
+        const char *lang = tags[i].lang && strcmp(tags[i].lang, "und") ?
+                           tags[i].lang : NULL;
 
         if (!tags[i].name) {
             av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n");