[vlc-commits] win32: undo double encoding
Rémi Denis-Courmont
git at videolan.org
Thu Feb 8 20:57:29 CET 2018
vlc/vlc-3.0 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 6 18:56:11 2018 +0200| [d6cc72ce30abf18adbd8d589158da85bf0769cee] | committer: Rémi Denis-Courmont
win32: undo double encoding
(caused by review error)
(cherry picked from commit 12f7ce07216688450d6bb274496743924d679b7c)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=d6cc72ce30abf18adbd8d589158da85bf0769cee
---
src/win32/netconf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/win32/netconf.c b/src/win32/netconf.c
index fe4e03ea91..81458ab37a 100644
--- a/src/win32/netconf.c
+++ b/src/win32/netconf.c
@@ -50,7 +50,7 @@ char *vlc_getProxyUrl(const char *psz_url)
}
if (url.psz_password == NULL )
- url.psz_password = vlc_uri_encode(proxy_pwd);
+ url.psz_password = proxy_pwd;
char *proxy_url = vlc_uri_compose (&url);
vlc_UrlClean (&url);
More information about the vlc-commits
mailing list