Changeset 83303 in vbox
- Timestamp:
- Mar 17, 2020 7:54:16 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136474
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r83259 r83303 46 46 #include <iprt/thread.h> 47 47 #include <iprt/vfs.h> 48 49 #include <iprt/cpp/path.h> 48 50 49 51 #include <map> … … 2683 2685 2684 2686 case 's': 2685 strSource = ValueUnion.psz; 2687 vrc = RTPathAbsCxx(strSource, ValueUnion.psz); 2688 if (RT_FAILURE(vrc)) 2689 return RTMsgErrorExitFailure("RTPathAbsCxx failed on '%s': %Rrc", ValueUnion.psz, vrc); 2686 2690 break; 2687 2691
Note:
See TracChangeset
for help on using the changeset viewer.