Changeset 44408 in vbox for trunk/src/VBox/Storage
- Timestamp:
- Jan 28, 2013 9:54:00 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83382
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VD.cpp
r44400 r44408 7719 7719 fLockRead = true; 7720 7720 7721 /* Not supported if the disk has child images attached. */7722 AssertMsgBreakStmt(pDisk->cImages == 1, ("cImages=%u\n", pDisk->cImages),7721 /* Must have at least one image in the chain, will resize last. */ 7722 AssertMsgBreakStmt(pDisk->cImages >= 1, ("cImages=%u\n", pDisk->cImages), 7723 7723 rc = VERR_NOT_SUPPORTED); 7724 7724 7725 PVDIMAGE pImage = pDisk->p Base;7725 PVDIMAGE pImage = pDisk->pLast; 7726 7726 7727 7727 /* If there is no compact callback for not file based backends then
Note:
See TracChangeset
for help on using the changeset viewer.