Changeset 102679 in vbox for trunk/src/VBox
- Timestamp:
- Dec 21, 2023 4:13:59 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r99784 r102679 901 901 RTPrintf(GuestCtrl::tr("Closing guest session ...\n")); 902 902 903 CHECK_ERROR(pCtx->pGuestSession, Close()); 903 if (pCtx->pGuestSession.isNotNull()) 904 CHECK_ERROR(pCtx->pGuestSession, Close()); 905 906 if (pCtx->cVerbose > 4) 907 { 908 SafeIfaceArray <IGuestSession> collSessions; 909 CHECK_ERROR(pCtx->pGuest, COMGETTER(Sessions)(ComSafeArrayAsOutParam(collSessions))); 910 RTPrintf(GuestCtrl::tr("Now %zu guest sessions registered\n"), collSessions.size()); 911 } 904 912 } 905 913 else if ( pCtx->fDetachGuestSession
Note:
See TracChangeset
for help on using the changeset viewer.