]> git.sesse.net Git - vlc/commitdiff
asx.c: check for </MoreInfo> tag also
authorIlkka Ollakka <ileoo@iki.fi>
Sun, 25 Oct 2009 09:23:10 +0000 (11:23 +0200)
committerIlkka Ollakka <ileoo@iki.fi>
Sun, 25 Oct 2009 09:23:10 +0000 (11:23 +0200)
this should fix #3013

modules/demux/playlist/asx.c

index 4e814e8c0c797823de6fa913f033cf5bc90ec7ba..4f990706a93945b6865cf0c16d4561b95690cc96 100644 (file)
@@ -433,6 +433,8 @@ static int Demux( demux_t *p_demux )
                 }
                 if( ( psz_parse = strcasestr( psz_parse, "/>" ) ) )
                     psz_parse += 2;
+                else if( ( psz_parse = strcasestr( psz_parse, "</MoreInfo>") ) )
+                    psz_parse += 11;
                 else continue;
             }
             else if( !strncasecmp( psz_parse, "<ABSTRACT>", 10 ) )