- Timestamp:
- May 28, 2012 12:01:24 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78196
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r41147 r41454 1588 1588 const char *pszSrvReqHandler, void **ppvImageBase) 1589 1589 { 1590 int rc = VINF_SUCCESS;1591 1590 AssertPtrReturn(pszSrvReqHandler, VERR_INVALID_PARAMETER); 1592 1591 1593 #ifdef VBOX_WITH_HARDENING1594 1592 /* 1595 1593 * Check that the module can be trusted. 1596 1594 */ 1597 rc = supR3HardenedVerifyFixedFile(pszFilename, false /* fFatal */); 1598 #endif 1595 int rc = SUPR3HardenedVerifyPlugIn(pszFilename, NULL /*pErrInfo*/); 1599 1596 if (RT_SUCCESS(rc)) 1600 1597 rc = supLoadModule(pszFilename, pszModule, pszSrvReqHandler, ppvImageBase); … … 2573 2570 if ((int64_t)u64Tmp != (int32_t)u64Tmp) 2574 2571 { 2575 LogRel(("SUPR3TracerRegisterModule: VERR_SUPDRV_VTG_BAD_HDR_PTR - u64Tmp=%#llx uProbeLocs=%#llx uVtgHdrAddr=%RTptr\n", 2572 LogRel(("SUPR3TracerRegisterModule: VERR_SUPDRV_VTG_BAD_HDR_PTR - u64Tmp=%#llx uProbeLocs=%#llx uVtgHdrAddr=%RTptr\n", 2576 2573 u64Tmp, pVtgHdr->uProbeLocs.u64, uVtgHdrAddr)); 2577 2574 return VERR_SUPDRV_VTG_BAD_HDR_PTR;
Note:
See TracChangeset
for help on using the changeset viewer.