<html><head></head><body>It was already pointed out multiple times by multiple people that this doesn't work in the previous thread.<br><br>-1<br><br><div class="gmail_quote">Le 12 octobre 2020 15:53:11 GMT+03:00, Romain Vimont <rom1v@videolabs.io> 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 allow VLC to open invalid URLs (using a space instead of %20<br>for example).<hr> src/libvlc.c | 4 +++-<br> 1 file changed, 3 insertions(+), 1 deletion(-)<br><br>diff --git a/src/libvlc.c b/src/libvlc.c<br>index c1dcde276d..ad5f300eff 100644<br>--- a/src/libvlc.c<br>+++ b/src/libvlc.c<br>@@ -442,8 +442,10 @@ static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,<br>             if( !mrl )<br>                 continue;<br>         }<br>+        else<br>+            mrl = vlc_uri_fixup(args[n]);<br> <br>-        intf_InsertItem( p_vlc, (mrl != NULL) ? mrl : args[n], i_options,<br>+        intf_InsertItem( p_vlc, mrl, i_options,<br>                          ( i_options ? &args[n + 1] : NULL ),<br>                          VLC_INPUT_OPTION_TRUSTED );<br>         free( mrl );</pre></blockquote></div><br>-- <br>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>