- Timestamp:
- Aug 22, 2014 10:02:30 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95704
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r52481 r52483 13063 13063 , E_FAIL); /** @todo setError. */ 13064 13064 13065 com::Utf8Str stateFilePathFull = aSavedStateFile;13065 com::Utf8Str stateFilePathFull; 13066 13066 int vrc = i_calculateFullPath(aSavedStateFile, stateFilePathFull); 13067 13067 if (RT_FAILURE(vrc)) 13068 13068 return setError(VBOX_E_FILE_ERROR, 13069 13069 tr("Invalid saved state file path '%s' (%Rrc)"), 13070 stateFilePathFull.c_str(),13070 aSavedStateFile.c_str(), 13071 13071 vrc); 13072 13072 -
trunk/src/VBox/Main/src-server/SnapshotImpl.cpp
r52481 r52483 1694 1694 1695 1695 ISnapshot* iSnapshot = aSnapshot; 1696 ComObjPtr<Snapshot> pSnapshot(static_cast<Snapshot*>(iSnapshot));1696 ComObjPtr<Snapshot> pSnapshot(static_cast<Snapshot*>(iSnapshot)); 1697 1697 ComObjPtr<SnapshotMachine> pSnapMachine = pSnapshot->i_getSnapshotMachine(); 1698 1698
Note:
See TracChangeset
for help on using the changeset viewer.