Changeset 59589 in vbox for trunk/src/VBox
- Timestamp:
- Feb 4, 2016 6:50:48 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r59588 r59589 85 85 86 86 ComObjPtr<Progress> progress; 87 HRESULT rc = S_OK;88 87 try 89 88 { … … 94 93 catch (HRESULT aRC) 95 94 { 96 rc = aRC; 97 } 98 99 if (SUCCEEDED(rc)) 100 /* Return progress to the caller */ 101 progress.queryInterfaceTo(aProgress.asOutParam()); 102 103 return rc; 95 return aRC; 96 } 97 98 /* Return progress to the caller */ 99 progress.queryInterfaceTo(aProgress.asOutParam()); 100 return S_OK; 104 101 } 105 102
Note:
See TracChangeset
for help on using the changeset viewer.