Changeset 16883 in vbox
- Timestamp:
- Feb 18, 2009 10:13:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r16882 r16883 287 287 GstPdpe = *pGstPdpe; 288 288 } 289 rc = pgmShwSyncPaePDPtr(pVM, (iPdPt << X86_PDPT_SHIFT), &GstPdpe, &pShwPaePd); 289 int rc = pgmShwSyncPaePDPtr(pVM, (iPdPt << X86_PDPT_SHIFT), &GstPdpe, &pShwPaePd); 290 AssertRCReturn(rc, rc); 291 if (rc != VINF_SUCCESS) 292 { 293 rc = pgmShwSyncPaePDPtr(pVM, (iPdPt << X86_PDPT_SHIFT), &GstPdpe, &pShwPaePd); 294 AssertFatalMsg(rc == VINF_SUCCESS, ("rc = %Rrc\n", rc)); 295 } 290 296 } 291 297 #endif
Note:
See TracChangeset
for help on using the changeset viewer.