From 638009535e61c4f10b6f41e219ed798031c80ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 20 Aug 2005 15:06:17 +0000 Subject: [PATCH] Fix url converter on win32 (patch contributed by Marco Munderloh) --- modules/control/http/util.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/control/http/util.c b/modules/control/http/util.c index 213081810b..6ea48594c5 100644 --- a/modules/control/http/util.c +++ b/modules/control/http/util.c @@ -60,9 +60,7 @@ char *E_(FileToUrl)( char *name, vlc_bool_t *pb_index ) while( *name ) { if( *name == '\\' ) - { - *p++ = '/'; - } + *name = '/'; name++; } #endif