Changeset 47698 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 13, 2013 2:50:50 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87926
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r47627 r47698 380 380 { 381 381 /* Create a new session ID and assign it. */ 382 uint32_t uNewSessionID = 0;382 uint32_t uNewSessionID = VBOX_GUESTCTRL_SESSION_ID_BASE; 383 383 uint32_t uTries = 0; 384 384 … … 393 393 uNewSessionID++; 394 394 if (uNewSessionID >= VBOX_GUESTCTRL_MAX_SESSIONS) 395 uNewSessionID = 0;395 uNewSessionID = VBOX_GUESTCTRL_SESSION_ID_BASE; 396 396 397 397 if (++uTries == VBOX_GUESTCTRL_MAX_SESSIONS) -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r47627 r47698 656 656 657 657 if (mData.mStatus != GuestSessionStatus_Started) 658 { 659 LogFlowThisFunc(("Session ID=%RU32 not started (anymore), status now is: %ld\n", 660 mData.mSession.mID, mData.mStatus)); 658 661 return VINF_SUCCESS; 662 } 659 663 660 664 int vrc;
Note:
See TracChangeset
for help on using the changeset viewer.