Changeset 12658 in vbox
- Timestamp:
- Sep 22, 2008 8:37:53 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36950
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Main/SessionImpl.cpp ¶
r12014 r12658 270 270 AutoReadLock alock (this); 271 271 272 AssertReturn (mState == SessionState_Open, E_FAIL);272 AssertReturn (mState != SessionState_Closed, E_FAIL); 273 273 274 274 AssertMsgReturn (mType == SessionType_Direct && !!mConsole, 275 275 ("This is not a direct session!\n"), E_FAIL); 276 277 /* return a failure if the session already transitioned to Closing 278 * but the server hasn't processed Machine::OnSessionEnd() yet. */ 279 if (mState != SessionState_Open) 280 return E_UNEXPECTED; 276 281 277 282 mConsole.queryInterfaceTo (aConsole);
Note:
See TracChangeset
for help on using the changeset viewer.