- Timestamp:
- Nov 18, 2017 2:04:50 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/initterm.cpp
r69620 r69732 258 258 HANDLE hLeakIt = CreateMutexW(NULL/*pSecAttr*/, FALSE, L"Global\\VirtualBoxComLazyRegistrationMutant"); 259 259 DWORD dwErr = GetLastError(); 260 AssertMsg(dwErr == ERROR_SUCCESS || dwErr == ERROR_ALREADY_EXISTS , ("%u\n", dwErr));260 AssertMsg(dwErr == ERROR_SUCCESS || dwErr == ERROR_ALREADY_EXISTS || dwErr == ERROR_ACCESS_DENIED, ("%u\n", dwErr)); 261 261 if (dwErr == ERROR_SUCCESS) 262 262 { … … 290 290 } 291 291 } 292 }293 Assert(hLeakIt != NULL); NOREF(hLeakIt);292 Assert(hLeakIt != NULL); NOREF(hLeakIt); 293 } 294 294 } 295 295 # endif
Note:
See TracChangeset
for help on using the changeset viewer.