Changeset 49789 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Dec 5, 2013 12:51:16 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91109
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PATMSSM.cpp
r49473 r49789 720 720 AssertMsg(nrFixupRecs == pPatch->patch.nrFixups, ("Fixup inconsistency! counted %d vs %d\n", nrFixupRecs, pPatch->patch.nrFixups)); 721 721 #endif 722 RTAvlPVDoWithAll(&pPatch->patch.FixupTree, true, patmSaveFixupRecords, pVM); 722 rc = RTAvlPVDoWithAll(&pPatch->patch.FixupTree, true, patmSaveFixupRecords, pVM); 723 AssertRCReturn(rc, rc); 723 724 724 725 #ifdef VBOX_STRICT … … 729 730 730 731 RTAvlU32DoWithAll(&pPatch->patch.Patch2GuestAddrTree, true, patmSaveP2GLookupRecords, pVM); 732 AssertRCReturn(rc, rc); 733 731 734 return VINF_SUCCESS; 732 735 }
Note:
See TracChangeset
for help on using the changeset viewer.