Changeset 60779 in vbox
- Timestamp:
- May 2, 2016 8:50:50 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106977
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r60776 r60779 6727 6727 return rcStrict; 6728 6728 6729 /** @todo Testcase & AMD-V/VT-x verification: Check if CR2 should really be the6730 * last byte. */6731 6729 RTGCPHYS GCPhysSecond; 6732 rcStrict = iemMemPageTranslateAndCheckAccess(pIemCpu, GCPtrFirst + (cbMem - 1), fAccess, &GCPhysSecond); 6730 rcStrict = iemMemPageTranslateAndCheckAccess(pIemCpu, (GCPtrFirst + (cbMem - 1)) & ~(RTGCPTR)PAGE_OFFSET_MASK, 6731 fAccess, &GCPhysSecond); 6733 6732 if (rcStrict != VINF_SUCCESS) 6734 6733 return rcStrict;
Note:
See TracChangeset
for help on using the changeset viewer.