Changeset 48408 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Sep 10, 2013 1:10:53 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/EmulatedUSBImpl.cpp
r48406 r48408 224 224 HRESULT EmulatedUSB::init(ComObjPtr<Console> pConsole) 225 225 { 226 LogFlowThisFunc((" pConsole=%p\n", pConsole));226 LogFlowThisFunc(("\n")); 227 227 228 228 ComAssertRet(!pConsole.isNull(), E_INVALIDARG); … … 254 254 while (it != m.webcams.end()) 255 255 { 256 WebcamsMap::iterator itNext = ++it; 256 257 EUSBWEBCAM *p = it->second; 257 it =m.webcams.erase(it);258 m.webcams.erase(it); 258 259 p->Release(); 260 it = itNext; 259 261 } 260 262 alock.release();
Note:
See TracChangeset
for help on using the changeset viewer.