VirtualBox

Changeset 42702 in vbox


Ignore:
Timestamp:
Aug 9, 2012 6:11:32 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
79908
Message:

Main/GuestSession: build fix (please review).

Location:
trunk/src/VBox/Main
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestSessionImpl.h

    r42695 r42702  
    7171
    7272    SessionTaskCopyTo(GuestSession *pSession,
    73                       PRTFILE pSourceFile, size_t cbSourceOffset, size_t cbSourceSize,
     73                      PRTFILE pSourceFile, size_t cbSourceOffset, uint64_t cbSourceSize,
    7474                      const Utf8Str &strDest, uint32_t uFlags);
    7575
  • trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp

    r42695 r42702  
    725725
    726726        if (   pCallbackData->u32Status == PROC_STS_ERROR
    727             && pCallbackData->u32Flags  == VERR_TOO_MUCH_DATA)
     727            && ((int)pCallbackData->u32Flags)  == VERR_TOO_MUCH_DATA)
    728728        {
    729729            LogFlowFunc(("Requested command with too much data, skipping dispatching ...\n"));
     
    27022702    else
    27032703    {
    2704         AssertPtr(!pSession.isNull());
     2704        Assert(!pSession.isNull());
    27052705        rc = pSession->queryInfo();
    27062706        if (RT_FAILURE(rc))
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r42695 r42702  
    134134SessionTaskCopyTo::SessionTaskCopyTo(GuestSession *pSession,
    135135                                     const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags)
    136                                      : mSourceFile(NULL),
     136                                     : mSource(strSource),
     137                                       mDest(strDest),
     138                                       mSourceFile(NULL),
    137139                                       mSourceOffset(0),
    138140                                       mSourceSize(0),
    139141                                       GuestSessionTask(pSession)
    140142{
    141     mSource = strSource;
    142     mDest   = strDest;
    143143    mCopyFileFlags = uFlags;
    144144}
Note: See TracChangeset for help on using the changeset viewer.

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