From f791bb6196c70f923375f0614f178bddaece877b Mon Sep 17 00:00:00 2001 From: Julian Scheel Date: Sun, 8 Nov 2009 13:33:39 +0000 Subject: Fix playback of HTTP URLs with escaped characters (terminate the string). --- src/input/http_helper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/http_helper.c b/src/input/http_helper.c index d7f9a93ff..db93b9b45 100644 --- a/src/input/http_helper.c +++ b/src/input/http_helper.c @@ -198,6 +198,7 @@ int _x_parse_url (char *url, char **proto, char** host, int *port, } else *it = start[i]; } + *it = '\0'; } } } else { -- cgit v1.2.3