VirtualBox

Changeset 33789 in vbox for trunk/src


Ignore:
Timestamp:
Nov 5, 2010 12:23:22 PM (14 years ago)
Author:
vboxsync
Message:

VBoxManage/Guest Copy: Bugfix for enumeration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp

    r33776 r33789  
    688688                                     DirEntry.szName) >= 0)
    689689                    {
    690                         if (!RTStrAPrintf(&pszFileDest, "%s%s",
    691                                           pszSubDir ? pszSubDir : "",
    692                                           DirEntry.szName) >= 0)
     690                        if (RTStrAPrintf(&pszFileDest, "%s%s",
     691                                         pszSubDir ? pszSubDir : "",
     692                                         DirEntry.szName) <= 0)
    693693                        {
    694694                            rc = VERR_NO_MEMORY;
     
    801801                                               pszFilter,
    802802                                               uFlags, pcObjects, pList);
    803                     if (*pcObjects == 0)
     803                    if (RT_SUCCESS(rc) && *pcObjects == 0)
    804804                        rc = VERR_NOT_FOUND;
    805805                }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette