Commit 4a590357 authored by Ilkka Ollakka's avatar Ilkka Ollakka

asx.c: check for </MoreInfo> tag also

this should fix #3013
parent 36acc922
...@@ -433,6 +433,8 @@ static int Demux( demux_t *p_demux ) ...@@ -433,6 +433,8 @@ static int Demux( demux_t *p_demux )
} }
if( ( psz_parse = strcasestr( psz_parse, "/>" ) ) ) if( ( psz_parse = strcasestr( psz_parse, "/>" ) ) )
psz_parse += 2; psz_parse += 2;
else if( ( psz_parse = strcasestr( psz_parse, "</MoreInfo>") ) )
psz_parse += 11;
else continue; else continue;
} }
else if( !strncasecmp( psz_parse, "<ABSTRACT>", 10 ) ) else if( !strncasecmp( psz_parse, "<ABSTRACT>", 10 ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment