Changeset 62675 in vbox for trunk/src/VBox/HostDrivers/Support/win
- Timestamp:
- Jul 29, 2016 11:19:16 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109248
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp
r62490 r62675 260 260 pErrInfo->pszMsg[0] = '\0'; 261 261 } 262 #else 263 RT_NOREF1(penmWhat); 262 264 #endif 263 265 return rc; … … 457 459 CloseServiceHandle(hSMgr); 458 460 } 461 else 462 rc = RTErrConvertFromWin32(dwErr); 459 463 return rc; 460 464 } … … 570 574 SERVICE_STATUS Status; 571 575 BOOL fRc = QueryServiceStatus(hService, &Status); 572 Assert(fRc); 576 Assert(fRc); NOREF(fRc); 573 577 if (Status.dwCurrentState == SERVICE_RUNNING) 574 578 rc = VINF_ALREADY_INITIALIZED; … … 652 656 int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq) 653 657 { 658 RT_NOREF1(cbReq); 659 654 660 /* 655 661 * Issue the device I/O control.
Note:
See TracChangeset
for help on using the changeset viewer.