Changeset 42674 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 8, 2012 8:14:13 AM (13 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r42673 r42674 583 583 int GuestFsObjData::FromLs(const GuestProcessStreamBlock &strmBlk) 584 584 { 585 LogFlowFunc Enter(("\n"));585 LogFlowFunc(("\n")); 586 586 587 587 int rc = VINF_SUCCESS; … … 620 620 int GuestFsObjData::FromStat(const GuestProcessStreamBlock &strmBlk) 621 621 { 622 LogFlowFunc Enter(("\n"));622 LogFlowFunc(("\n")); 623 623 624 624 int rc = VINF_SUCCESS; -
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r42673 r42674 328 328 /* Create the object. */ 329 329 ComObjPtr<GuestFsObjInfo> pFsObjInfo; 330 HRESULThr = pFsObjInfo.createObject();330 hr = pFsObjInfo.createObject(); 331 331 if (FAILED(hr)) throw VERR_COM_UNEXPECTED; 332 332 -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r42673 r42674 1371 1371 1372 1372 GuestProcessWaitResult waitRes; 1373 intrc = waitFor(ProcessWaitForFlag_Start, uTimeoutMS, waitRes);1373 rc = waitFor(ProcessWaitForFlag_Start, uTimeoutMS, waitRes); 1374 1374 if ( RT_FAILURE(rc) 1375 1375 || ( waitRes.mResult == ProcessWaitResult_Start
Note:
See TracChangeset
for help on using the changeset viewer.