Index: /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp
===================================================================
--- /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp	(revision 68343)
+++ /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp	(revision 68344)
@@ -1191,4 +1191,11 @@
         return supR3HardenedSetError3(VERR_SUPLIB_PATH_TOO_SHORT, pErrInfo, "The path is too short: '", pszPath, "'");
 
+#if RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX
+    /*
+     * Skip double slashes.
+     */
+    while (RTPATH_IS_SLASH(*pszSrc))
+        pszSrc++;
+#else
     /*
      * The root slash should be alone to avoid UNC confusion.
@@ -1197,4 +1204,5 @@
         return supR3HardenedSetError3(VERR_SUPLIB_PATH_NOT_CLEAN, pErrInfo,
                                       "The path is not clean of leading double slashes: '", pszPath, "'");
+#endif
     /*
      * Check each component.  No parent references.
