Changeset 65390 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 20, 2017 3:03:00 PM (8 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r65158 r65390 12587 12587 * This self reference will be released as the very last step on return. 12588 12588 */ 12589 ComObjPtr<SessionMachine> selfRef = this; 12589 ComObjPtr<SessionMachine> selfRef; 12590 if (aReason != Uninit::Unexpected) 12591 selfRef = this; 12590 12592 12591 12593 /* Enclose the state transition Ready->InUninit->NotReady */ -
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r65120 r65390 1592 1592 * re-acquired in the right place later. See Medium::getParent() for sample 1593 1593 * code how to do this safely. */ 1594 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);1594 VirtualBox *pVirtualBox = m->pVirtualBox; 1595 1595 if (!pVirtualBox) 1596 1596 return;
Note:
See TracChangeset
for help on using the changeset viewer.