Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
m3u parser: another url parsing quickfix
  • Loading branch information
perexg committed Nov 19, 2015
1 parent 62a3f72 commit 752b62b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc/m3u.c
Expand Up @@ -81,7 +81,7 @@ static int is_full_url(const char *url)
strncmp(url, "rtsp://", 7) == 0 ||
strncmp(url, "rtsps://", 8) == 0 ||
strncmp(url, "udp://", 6) == 0 ||
strncmp(url, "rtp://", 6);
strncmp(url, "rtp://", 6) == 0;
}

/*
Expand Down

0 comments on commit 752b62b

Please sign in to comment.