Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
iptv pipe: fix the backslash handling
  • Loading branch information
perexg committed Nov 19, 2014
1 parent 5df9cdf commit 7743670
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/input/mpegts/iptv/iptv_pipe.c
Expand Up @@ -57,11 +57,8 @@ iptv_pipe_start ( iptv_mux_t *im, const char *_raw, const url_t *url )
while (*s && *s != ' ') {
while (*s && *s != ' ' && *s != '\\')
s++;
if (*s == '\\') {
s++;
if (*s)
s++;
}
if (*s == '\\')
memmove(s, s + 1, strlen(s));
}
if (f != s) {
if (*s) {
Expand Down

0 comments on commit 7743670

Please sign in to comment.