handle Windows sepecific file://localhost/ semantic ... Daniel

* xmlIO.c: handle Windows sepecific file://localhost/ semantic ...
Daniel
diff --git a/xmlIO.c b/xmlIO.c
index a3d73c3..1c2a122 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -297,7 +297,11 @@
     }
 
     if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost", 16))
+#if defined (_WIN32) && !defined(__CYGWIN__)
+	path = &filename[17];
+#else
 	path = &filename[16];
+#endif
     else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
 #if defined (_WIN32) && !defined(__CYGWIN__)
 	path = &filename[8];