Changeset 37306 in vbox
- Timestamp:
- Jun 2, 2011 12:35:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r37142 r37306 241 241 HRESULT Host::init(VirtualBox *aParent) 242 242 { 243 HRESULT hrc; 243 244 LogFlowThisFunc(("aParent=%p\n", aParent)); 244 245 … … 270 271 m->pUSBProxyService = new USBProxyService(this); 271 272 # endif 272 HRESULThrc = m->pUSBProxyService->init();273 hrc = m->pUSBProxyService->init(); 273 274 AssertComRCReturn(hrc, hrc); 274 275 #endif /* VBOX_WITH_USB */ … … 1692 1693 const Utf8Str strLocationNew = pNew->getLocationFull(); 1693 1694 bool fFound = false; 1694 for ( MediaList::iteratoritCached = pllCached->begin();1695 for (itCached = pllCached->begin(); 1695 1696 itCached != pllCached->end(); 1696 1697 ++itCached)
Note:
See TracChangeset
for help on using the changeset viewer.