Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: autonet - improve parsing of extra HTTP headers - accept & deli…
…miter
  • Loading branch information
perexg committed Nov 1, 2015
1 parent 902f307 commit 55aa465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/iptv/iptv_auto.c
Expand Up @@ -144,7 +144,7 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,
while (*n) {
while (*n && *n <= ' ') n++;
y = n;
while (*n && *n != delim) n++;
while (*n && *n != delim && *n != '&') n++;
if (*n) { *n = '\0'; n++; }
if (*y)
tvh_strlcatf(custom, sizeof(custom), l, "%s\n", y);
Expand Down

0 comments on commit 55aa465

Please sign in to comment.