Changeset 14579 in vbox for trunk/src/VBox/Main/SharedFolderImpl.cpp
- Timestamp:
- Nov 25, 2008 3:59:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/SharedFolderImpl.cpp
r13837 r14579 71 71 /* Enclose the state transition NotReady->InInit->Ready */ 72 72 AutoInitSpan autoInitSpan (this); 73 AssertReturn (autoInitSpan.isOk(), E_ UNEXPECTED);73 AssertReturn (autoInitSpan.isOk(), E_FAIL); 74 74 75 75 unconst (mMachine) = aMachine; … … 100 100 /* Enclose the state transition NotReady->InInit->Ready */ 101 101 AutoInitSpan autoInitSpan (this); 102 AssertReturn (autoInitSpan.isOk(), E_ UNEXPECTED);102 AssertReturn (autoInitSpan.isOk(), E_FAIL); 103 103 104 104 unconst (mMachine) = aMachine; … … 129 129 /* Enclose the state transition NotReady->InInit->Ready */ 130 130 AutoInitSpan autoInitSpan (this); 131 AssertReturn (autoInitSpan.isOk(), E_ UNEXPECTED);131 AssertReturn (autoInitSpan.isOk(), E_FAIL); 132 132 133 133 unconst (mConsole) = aConsole; … … 157 157 /* Enclose the state transition NotReady->InInit->Ready */ 158 158 AutoInitSpan autoInitSpan (this); 159 AssertReturn (autoInitSpan.isOk(), E_ UNEXPECTED);159 AssertReturn (autoInitSpan.isOk(), E_FAIL); 160 160 161 161 unconst (mVirtualBox) = aVirtualBox;
Note:
See TracChangeset
for help on using the changeset viewer.