Changeset 52005 in vbox
- Timestamp:
- Jul 12, 2014 11:59:03 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94939
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r51643 r52005 1841 1841 * mode, nor have the correct memory context.) 1842 1842 */ 1843 VMCPUID idCpu= (VMCPUID)(uintptr_t)pvUser;1843 VMCPUID idCpu = (VMCPUID)(uintptr_t)pvUser; 1844 1844 if (pVCpu->idCpu != idCpu) 1845 1845 return VINF_SUCCESS; … … 1849 1849 * and make sure there is still room for our patch record. 1850 1850 */ 1851 PCPUMCTX 1851 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1852 1852 PHMTPRPATCH pPatch = (PHMTPRPATCH)RTAvloU32Get(&pVM->hm.s.PatchTree, (AVLOU32KEY)pCtx->eip); 1853 1853 if (pPatch) … … 1856 1856 return VINF_SUCCESS; 1857 1857 } 1858 uint32_t const 1858 uint32_t const idx = pVM->hm.s.cPatches; 1859 1859 if (idx >= RT_ELEMENTS(pVM->hm.s.aPatches)) 1860 1860 {
Note:
See TracChangeset
for help on using the changeset viewer.