- Timestamp:
- Apr 26, 2010 4:59:53 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MediumImpl.cpp
r28587 r28770 3827 3827 3828 3828 /* go to Deleting state, so that the medium is not actually locked */ 3829 rc = markForDeletion(); 3830 if (FAILED(rc)) 3831 throw rc; 3829 if (m->state != MediumState_Deleting) 3830 { 3831 rc = markForDeletion(); 3832 if (FAILED(rc)) 3833 throw rc; 3834 } 3832 3835 3833 3836 /* Build the medium lock list. */ -
trunk/src/VBox/Main/SnapshotImpl.cpp
r28585 r28770 2436 2436 { 2437 2437 Assert(pMedium->getState() == MediumState_Deleting); 2438 /* No need to hold the lock any longer. */ 2439 mLock.release(); 2438 2440 rc = pMedium->deleteStorage(&aTask.pProgress, 2439 2441 true /* aWait */,
Note:
See TracChangeset
for help on using the changeset viewer.