VirtualBox

Changeset 91745 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Oct 14, 2021 8:24:19 PM (3 years ago)
Author:
vboxsync
Message:

Main/GuestSessionImplTasks.cpp: Corrected NULL parameter name comment; removed unnecessary return statements and status checks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r91744 r91745  
    20382038
    20392039int GuestSessionTaskUpdateAdditions::copyFileToGuest(GuestSession *pSession, RTVFS hVfsIso,
    2040                                                      Utf8Str const &strFileSrc, const Utf8Str &strFileDst,
    2041                                                      bool fOptional)
     2040                                                     Utf8Str const &strFileSrc, const Utf8Str &strFileDst, bool fOptional)
    20422041{
    20432042    AssertPtrReturn(pSession, VERR_INVALID_POINTER);
     
    20812080            else
    20822081            {
    2083                 rc = fileCopyToGuestInner(strFileSrc, hVfsFile, strFileDst, dstFile,
    2084                                           FileCopyFlag_None, 0 /*cbOffset*/, cbSrcSize);
     2082                rc = fileCopyToGuestInner(strFileSrc, hVfsFile, strFileDst, dstFile, FileCopyFlag_None, 0 /*offCopy*/, cbSrcSize);
    20852083
    20862084                int rc2 = dstFile->i_closeFile(&rcGuest);
     
    20902088
    20912089        RTVfsFileRelease(hVfsFile);
    2092         if (RT_FAILURE(rc))
    2093             return rc;
    2094     }
    2095     else
    2096     {
    2097         if (fOptional)
    2098             return VINF_SUCCESS;
    2099 
    2100         return rc;
    2101     }
     2090    }
     2091    else if (fOptional)
     2092        rc = VINF_SUCCESS;
    21022093
    21032094    return rc;
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