Changeset 98289 in vbox for trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
- Timestamp:
- Jan 24, 2023 4:02:15 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r98288 r98289 726 726 hrc = i_writeCloudImpl(m->locInfo, progress); 727 727 } 728 catch (HRESULT aRC)729 { 730 hrc = aRC;728 catch (HRESULT hrcXcpt) 729 { 730 hrc = hrcXcpt; 731 731 } 732 732 … … 816 816 817 817 } 818 catch (HRESULT aRC)819 { 820 hrc = aRC;818 catch (HRESULT hrcXcpt) 819 { 820 hrc = hrcXcpt; 821 821 } 822 822 … … 2816 2816 hrc = setError(VBOX_E_FILE_ERROR, x.what()); 2817 2817 } 2818 catch (HRESULT aRC)2819 { 2820 hrc = aRC;2818 catch (HRESULT hrcXcpt) 2819 { 2820 hrc = hrcXcpt; 2821 2821 } 2822 2822
Note:
See TracChangeset
for help on using the changeset viewer.