path_is_absolute() fix for win32
[qemu] / block.c
diff --git a/block.c b/block.c
index bbece2d..9264e42 100644 (file)
--- a/block.c
+++ b/block.c
@@ -59,6 +59,11 @@ static BlockDriver *first_drv;
 int path_is_absolute(const char *path)
 {
     const char *p;
+#ifdef _WIN32
+    /* specific case for names like: "\\.\d:" */
+    if (*path == '/' || *path == '\\')
+        return 1;
+#endif
     p = strchr(path, ':');
     if (p)
         p++;