Changeset 83606 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Apr 7, 2020 11:57:30 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137011
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r83489 r83606 1406 1406 */ 1407 1407 1408 if (mDest.isEmpty()) 1409 return setProgressErrorMsg(VBOX_E_IPRT_ERROR, Utf8StrFmt(GuestSession::tr("Destination must not be empty"))); 1410 1408 1411 GuestSessionFsSourceSet::iterator itSrc = mSources.begin(); 1409 1412 while (itSrc != mSources.end()) … … 1413 1416 1414 1417 bool fFollowSymlinks; 1418 1419 if (strSrc.isEmpty()) 1420 { 1421 strErrorInfo = Utf8StrFmt(GuestSession::tr("Source entry must not be empty")); 1422 break; 1423 } 1415 1424 1416 1425 if (itSrc->enmType == FsObjType_Directory) … … 1654 1663 */ 1655 1664 1665 if (mDest.isEmpty()) 1666 return setProgressErrorMsg(VBOX_E_IPRT_ERROR, Utf8StrFmt(GuestSession::tr("Destination must not be empty"))); 1667 1656 1668 GuestSessionFsSourceSet::iterator itSrc = mSources.begin(); 1657 1669 while (itSrc != mSources.end()) … … 1661 1673 1662 1674 LogFlowFunc(("Source: strSrc=%s, strDst=%s\n", strSrc.c_str(), strDst.c_str())); 1675 1676 if (strSrc.isEmpty()) 1677 { 1678 strErrorInfo = Utf8StrFmt(GuestSession::tr("Source entry must not be empty")); 1679 break; 1680 } 1663 1681 1664 1682 RTFSOBJINFO srcFsObjInfo;
Note:
See TracChangeset
for help on using the changeset viewer.