Commit 33316bd2 authored by Antoine Cellerier's avatar Antoine Cellerier

Remove leading line feeds (or while spaces). Fixes...

Remove leading line feeds (or while spaces). Fixes "http://www.yle.fi/java/areena/dispatcher/193730.asx?bitrate=1000000" while previous commit fixed http://paste.videolan.org/1950 .
parent f9cd3820
...@@ -589,6 +589,7 @@ static int Demux( demux_t *p_demux ) ...@@ -589,6 +589,7 @@ static int Demux( demux_t *p_demux )
if( ( psz_parse = strcasestr( psz_parse, "\"" ) ) ) if( ( psz_parse = strcasestr( psz_parse, "\"" ) ) )
{ {
psz_backup = ++psz_parse; psz_backup = ++psz_parse;
psz_backup = SkipBlanks(psz_backup, (unsigned)-1);
if( ( psz_parse = strcasestr( psz_parse, "\"" ) ) ) if( ( psz_parse = strcasestr( psz_parse, "\"" ) ) )
{ {
char *psz_tmp; char *psz_tmp;
......
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