- Timestamp:
- May 18, 2020 6:27:08 PM (5 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r83741 r84343 2585 2585 ComObjPtr<GuestProcess> pCurProc = itProcs->second; 2586 2586 AutoCaller procCaller(pCurProc); 2587 if ( procCaller.rc())2587 if (!procCaller.isOk()) 2588 2588 return VERR_COM_INVALID_OBJECT_STATE; 2589 2589 -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r83169 r84343 4087 4087 ComObjPtr<Machine> &pMachine = *it; 4088 4088 AutoCaller machCaller(pMachine); 4089 if ( machCaller.rc())4089 if (!machCaller.isOk()) 4090 4090 continue; // we can't ask inaccessible machines for their names 4091 4091
Note:
See TracChangeset
for help on using the changeset viewer.