From c96f83c23576ec04e8ff88fa08f1c16eba68a019 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 12 Nov 2010 07:16:32 +0000 Subject: stream/url.c: Unescape username/password when parsing URLs This makes MPlayer handle it the same way as curl, and it also is the only method that works with http_proxy://...http://user:password@... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32621 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/url.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'stream') diff --git a/stream/url.c b/stream/url.c index 3a2d9b96e9..0d64382e2f 100644 --- a/stream/url.c +++ b/stream/url.c @@ -152,7 +152,9 @@ url_new(const char* url) { } strncpy( Curl->password, ptr3+1, len2); Curl->password[len2]='\0'; + url_unescape_string(Curl->password, Curl->password); } + url_unescape_string(Curl->username, Curl->username); ptr1 = ptr2+1; pos1 = ptr1-escfilename; } @@ -251,7 +253,8 @@ url_free(URL_t* url) { /* Replace escape sequences in an URL (or a part of an URL) */ -/* works like strcpy(), but without return argument */ +/* works like strcpy(), but without return argument, + except that outbuf == inbuf is allowed */ void url_unescape_string(char *outbuf, const char *inbuf) { -- cgit v1.2.3