- Timestamp:
- Nov 5, 2010 12:23:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r33776 r33789 688 688 DirEntry.szName) >= 0) 689 689 { 690 if ( !RTStrAPrintf(&pszFileDest, "%s%s",691 692 DirEntry.szName) >= 0)690 if (RTStrAPrintf(&pszFileDest, "%s%s", 691 pszSubDir ? pszSubDir : "", 692 DirEntry.szName) <= 0) 693 693 { 694 694 rc = VERR_NO_MEMORY; … … 801 801 pszFilter, 802 802 uFlags, pcObjects, pList); 803 if ( *pcObjects == 0)803 if (RT_SUCCESS(rc) && *pcObjects == 0) 804 804 rc = VERR_NOT_FOUND; 805 805 }
Note:
See TracChangeset
for help on using the changeset viewer.