Changeset 30263 in vbox for trunk/src/VBox/VMM/VMMGC
- Timestamp:
- Jun 16, 2010 6:31:42 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM/VMMGC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/TRPMGC.cpp
r28800 r30263 175 175 */ 176 176 RTGCPTR PC; 177 int rc = SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, (RTGCPTR)pRegFrame->eip, &PC); 177 int rc = SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, 178 (RTGCPTR)pRegFrame->eip, &PC); 178 179 if (rc == VINF_SUCCESS) 179 180 { -
trunk/src/VBox/VMM/VMMGC/TRPMGCHandlers.cpp
r30160 r30263 380 380 */ 381 381 RTGCPTR PC; 382 rc = SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, (RTGCPTR)pRegFrame->eip, &PC); 382 rc = SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, 383 (RTGCPTR)pRegFrame->eip, &PC); 383 384 if (RT_FAILURE(rc)) 384 385 { … … 507 508 */ 508 509 RTGCPTR GCPtr; 509 if (SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, (RTGCPTR)pRegFrame->eip, &GCPtr) == VINF_SUCCESS) 510 if ( SELMValidateAndConvertCSAddr(pVM, pRegFrame->eflags, pRegFrame->ss, pRegFrame->cs, &pRegFrame->csHid, 511 (RTGCPTR)pRegFrame->eip, &GCPtr) 512 == VINF_SUCCESS) 510 513 { 511 514 uint8_t *pu8Code = (uint8_t *)(uintptr_t)GCPtr;
Note:
See TracChangeset
for help on using the changeset viewer.