Changeset 31387 in vbox
- Timestamp:
- Aug 5, 2010 10:13:58 AM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
HostImpl.cpp (modified) (1 diff)
-
VirtualBoxImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r31374 r31387 1514 1514 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 1515 1515 1516 AutoReadLock alock(&m->usbListsLock COMMA_LOCKVAL_SRC_POS); 1516 AutoReadLock alock1(this COMMA_LOCKVAL_SRC_POS); 1517 AutoReadLock alock2(&m->usbListsLock COMMA_LOCKVAL_SRC_POS); 1517 1518 1518 1519 data.llUSBDeviceFilters.clear(); -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r31372 r31387 3297 3297 // leave extra data alone, it's still in the config file 3298 3298 3299 /* host data (USB filters) */ 3300 rc = m->pHost->saveSettings(m->pMainConfigFile->host); 3301 if (FAILED(rc)) throw rc; 3299 /* host data (USB filters), will take host lock. */ 3300 { 3301 mediaLock.release(); 3302 machinesLock.release(); 3303 rc = m->pHost->saveSettings(m->pMainConfigFile->host); 3304 if (FAILED(rc)) throw rc; 3305 } 3302 3306 3303 3307 rc = m->pSystemProperties->saveSettings(m->pMainConfigFile->systemProperties);
Note:
See TracChangeset
for help on using the changeset viewer.

