Index: /trunk/src/VBox/Runtime/r3/win/ldrNative-win.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/ldrNative-win.cpp	(revision 61988)
+++ /trunk/src/VBox/Runtime/r3/win/ldrNative-win.cpp	(revision 61989)
@@ -94,4 +94,14 @@
     if (RT_SUCCESS(rc))
     {
+        /* Convert slashes just to be on the safe side. */
+        for (size_t off = 0;; off++)
+        {
+            RTUTF16 wc = pwszNative[off];
+            if (wc == '/')
+                pwszNative[off] = '\\';
+            else if (!wc)
+                break;
+        }
+
         /*
          * Attempt load.
