Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: m3u parser - another fix for url parser
  • Loading branch information
perexg committed Oct 30, 2015
1 parent 4900abd commit e85a3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/iptv/iptv_http.c
Expand Up @@ -159,7 +159,7 @@ iptv_http_complete
p++;
if (*p == '/')
p++;
if ((p = strchr(s, '/')) != NULL)
if ((p = strchr(p, '/')) != NULL)
*p = '\0';
}
if (!urlparse(s, &u))
Expand Down

0 comments on commit e85a3c7

Please sign in to comment.