Changeset 79189 in vbox for trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
- Timestamp:
- Jun 17, 2019 4:04:55 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r79187 r79189 272 272 strPath.c_str(), enmDirectoryCreateFlags, fMode, fFollowSymlinks, fCanExist)); 273 273 274 GuestFsObjData objData; int rcGuest; 274 GuestFsObjData objData; 275 int rcGuest = VERR_IPE_UNINITIALIZED_STATUS; 275 276 int rc = mSession->i_directoryQueryInfo(strPath, fFollowSymlinks, objData, &rcGuest); 276 277 if (RT_SUCCESS(rc)) … … 1119 1120 const ComObjPtr<GuestSession> &pSession = mTask.GetSession(); 1120 1121 1121 ComObjPtr <GuestDirectory> pDir; int rcGuest; 1122 ComObjPtr <GuestDirectory> pDir; 1123 int rcGuest = VERR_IPE_UNINITIALIZED_STATUS; 1122 1124 int rc = pSession->i_directoryOpen(dirOpenInfo, pDir, &rcGuest); 1123 1125 if (RT_FAILURE(rc)) … … 1476 1478 LogFlowFunc(("strSrc=%s, strDst=%s, fFollowSymlinks=%RTbool\n", strSrc.c_str(), strDst.c_str(), fFollowSymlinks)); 1477 1479 1478 GuestFsObjData srcObjData; int rcGuest; 1480 GuestFsObjData srcObjData; 1481 int rcGuest = VERR_IPE_UNINITIALIZED_STATUS; 1479 1482 rc = mSession->i_fsQueryInfo(strSrc, fFollowSymlinks, srcObjData, &rcGuest); 1480 1483 if (RT_FAILURE(rc)) … … 1987 1990 dstOpenInfo.mSharingMode = FileSharingMode_All; /** @todo Use _Read when implemented. */ 1988 1991 1989 ComObjPtr<GuestFile> dstFile; int rcGuest; 1992 ComObjPtr<GuestFile> dstFile; 1993 int rcGuest = VERR_IPE_UNINITIALIZED_STATUS; 1990 1994 rc = mSession->i_fileOpen(dstOpenInfo, dstFile, &rcGuest); 1991 1995 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.