[vlc-devel] Bug in http-interface on win32
Marco Munderloh
Marco.Munderloh at web.de
Sat Aug 20 16:20:36 CEST 2005
Hi!
There is a bug in the http-interface filename to url converter on win32
preventing access to all subdirectories (e.g. admin).
I have a prepared a patch.
grettings,
Marco
diff:
Index: modules/control/http/util.c
===================================================================
--- util.c (revision 12286)
+++ util.c (working copy)
@@ -61,7 +61,7 @@
{
if( *name == '\\' )
{
- *p++ = '/';
+ *name = '/';
}
name++;
}
--
This is the vlc-devel mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://developers.videolan.org/lists.html
More information about the vlc-devel
mailing list