<html><head></head><body>Same as 1.<br><br>-1<br><br><div class="gmail_quote">Le 9 octobre 2020 09:56:59 GMT+03:00, Thomas Guillem <thomas@gllm.fr> a écrit :<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<pre class="k9mail">This will allow VLC to open unvalid URLs (using a space instead of the<br>%20 encoding, for example). Every other browsers or players are doing<br>this fixup.<br><br>Fixes #3435<hr> modules/access/http.c | 2 +-<br> 1 file changed, 1 insertion(+), 1 deletion(-)<br><br>diff --git a/modules/access/http.c b/modules/access/http.c<br>index 4384e2b0a3c..d95284b4ea9 100644<br>--- a/modules/access/http.c<br>+++ b/modules/access/http.c<br>@@ -167,7 +167,7 @@ static int Open( vlc_object_t *p_this )<br>     p_sys->size = 0;<br>     p_access->p_sys = p_sys;<br> <br>-    if( vlc_UrlParse( &p_sys->url, psz_url ) || p_sys->url.psz_host == NULL )<br>+    if( vlc_UrlParseFixup( &p_sys->url, psz_url ) || p_sys->url.psz_host == NULL )<br>     {<br>         msg_Err( p_access, "invalid URL" );<br>         vlc_UrlClean( &p_sys->url );</pre></blockquote></div><br>-- <br>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>