Index: /trunk/src/VBox/VMM/VMMAll/TMAllCpu.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/TMAllCpu.cpp	(revision 68021)
+++ /trunk/src/VBox/VMM/VMMAll/TMAllCpu.cpp	(revision 68022)
@@ -383,5 +383,5 @@
         uint64_t cNsToDeadline;
         uint64_t u64NowVirtSync = TMVirtualSyncGetWithDeadlineNoCheck(pVM, &cNsToDeadline);
-        uint64_t u64Now = ASMMultU64ByU32DivByU32(u64NowVirtSync, pVM->tm.s.cTSCTicksPerSecond, TMCLOCK_FREQ_VIRTUAL)
+        uint64_t u64Now = ASMMultU64ByU32DivByU32(u64NowVirtSync, pVM->tm.s.cTSCTicksPerSecond, TMCLOCK_FREQ_VIRTUAL);
         u64Now -= pVCpu->tm.s.offTSCRawSrc;
         *poffRealTsc     = u64Now - ASMReadTSC();
Index: /trunk/src/VBox/VMM/testcase/tstVMM.cpp
===================================================================
--- /trunk/src/VBox/VMM/testcase/tstVMM.cpp	(revision 68021)
+++ /trunk/src/VBox/VMM/testcase/tstVMM.cpp	(revision 68022)
@@ -38,4 +38,6 @@
 #include <iprt/thread.h>
 
+#include <iprt/win/windows.h>
+
 
 /*********************************************************************************************************************************
@@ -270,4 +272,26 @@
     }
 
+#if 1
+    HMODULE hmod;
+    //SetLastError(0);
+    //hmod = LoadLibraryW(L"c:\\tmp\\testdir\\nodot");
+    //RTPrintf("c:\\tmp\\testdir\\nodot -> %p %#x\n", hmod, GetLastError());
+    //
+    //SetLastError(0);
+    //hmod = LoadLibraryW(L"c:\\tmp\\testdir\\trailingdot.");
+    //RTPrintf("c:\\tmp\\testdir\\trailingdot. -> %p %#x\n", hmod, GetLastError());
+
+    RTPrintf("\n=======>\n");
+    SetLastError(0);
+    hmod = LoadLibraryW(L"\\\\localhost\\c\\tmp\\VBoxRes.dll");
+    RTPrintf("\\\\localhost\\c\\tmp\\VBoxRes.dll -> %p %#x\n", hmod, GetLastError());
+
+    RTPrintf("\n=======>\n");
+    SetLastError(0);
+    hmod = LoadLibraryW(L"\\\\?\\UNC\\localhost\\c\\tmp\\VBoxRes.dll");
+    RTPrintf("\\\\?\\UNC\\localhost\\c\\tmp\\VBoxRes.dll -> %p %#x\n", hmod, GetLastError());
+
+#else
+
     /*
      * Create the test VM.
@@ -374,5 +398,5 @@
     else
         RTTestFailed(hTest, "VMR3Create failed: rc=%Rrc\n", rc);
-
+#endif
     return RTTestSummaryAndDestroy(hTest);
 }
