Changeset 7111 in vbox
- Timestamp:
- Feb 25, 2008 2:56:17 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28359
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SSM.cpp
r7072 r7111 91 91 /** The VM handle. */ 92 92 PVM pVM; 93 /** The size of the file header. 94 * Because the file header was incorrectly aligned there we've ended up with 93 /** The size of the file header. 94 * Because the file header was incorrectly aligned there we've ended up with 95 95 * differences between the 64-bit and 32-bit file header. */ 96 96 size_t cbFileHdr; … … 777 777 * Validate input. 778 778 */ 779 if ( enmAfter != SSMAFTER_DESTROY 779 if ( enmAfter != SSMAFTER_DESTROY 780 780 && enmAfter != SSMAFTER_CONTINUE) 781 781 { … … 1495 1495 else 1496 1496 { 1497 /* 1497 /* 1498 1498 * We failed, but if loading for the debugger ignore certain failures 1499 1499 * just to get it all loaded (big hack). … … 1503 1503 || rc != VERR_SSM_LOADED_TOO_MUCH) 1504 1504 break; 1505 Handle.rc = rc = VINF_SUCCESS; 1505 Handle.rc = rc = VINF_SUCCESS; 1506 1506 ssmR3Progress(&Handle, Handle.offEstUnitEnd - Handle.offEst); 1507 1507 } … … 1516 1516 else 1517 1517 { 1518 /* 1518 /* 1519 1519 * SSM unit wasn't found - ignore this when loading for the debugger. 1520 1520 */ … … 2250 2250 } 2251 2251 2252 2252 2253 /** 2253 2254 * Saves a GC physical address item to the current data unit. … … 2775 2776 return VERR_SSM_INVALID_STATE; 2776 2777 } 2778 2777 2779 2778 2780 /**
Note:
See TracChangeset
for help on using the changeset viewer.