Changeset 42702 in vbox
- Timestamp:
- Aug 9, 2012 6:11:32 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79908
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r42695 r42702 71 71 72 72 SessionTaskCopyTo(GuestSession *pSession, 73 PRTFILE pSourceFile, size_t cbSourceOffset, size_t cbSourceSize,73 PRTFILE pSourceFile, size_t cbSourceOffset, uint64_t cbSourceSize, 74 74 const Utf8Str &strDest, uint32_t uFlags); 75 75 -
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r42695 r42702 725 725 726 726 if ( pCallbackData->u32Status == PROC_STS_ERROR 727 && pCallbackData->u32Flags== VERR_TOO_MUCH_DATA)727 && ((int)pCallbackData->u32Flags) == VERR_TOO_MUCH_DATA) 728 728 { 729 729 LogFlowFunc(("Requested command with too much data, skipping dispatching ...\n")); … … 2702 2702 else 2703 2703 { 2704 Assert Ptr(!pSession.isNull());2704 Assert(!pSession.isNull()); 2705 2705 rc = pSession->queryInfo(); 2706 2706 if (RT_FAILURE(rc)) -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r42695 r42702 134 134 SessionTaskCopyTo::SessionTaskCopyTo(GuestSession *pSession, 135 135 const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags) 136 : mSourceFile(NULL), 136 : mSource(strSource), 137 mDest(strDest), 138 mSourceFile(NULL), 137 139 mSourceOffset(0), 138 140 mSourceSize(0), 139 141 GuestSessionTask(pSession) 140 142 { 141 mSource = strSource;142 mDest = strDest;143 143 mCopyFileFlags = uFlags; 144 144 }
Note:
See TracChangeset
for help on using the changeset viewer.