Changeset 98847 in vbox
- Timestamp:
- Mar 6, 2023 10:28:59 PM (21 months ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r98846 r98847 5673 5673 return i_setStateError(); 5674 5674 } 5675 5676 if (m->fClosing) 5677 return setError(VBOX_E_OBJECT_IN_USE, 5678 tr("Medium '%s' cannot be closed because it is already in the process of being closed", ""), 5679 m->strLocationFull.c_str()); 5675 5680 5676 5681 if (m->backRefs.size() != 0) -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r98846 r98847 5348 5348 Log(("Closing medium %RTuuid\n", pMedium->i_getId().raw())); 5349 5349 AutoCaller mac(pMedium); 5350 pMedium->i_close(mac); 5350 HRESULT hrc = pMedium->i_close(mac); 5351 if (FAILED(hrc)) 5352 return hrc; 5351 5353 } 5352 5354
Note:
See TracChangeset
for help on using the changeset viewer.