Changeset 90988 in vbox
- Timestamp:
- Aug 30, 2021 8:45:10 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Storage/VHD.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VHD.cpp
r90802 r90988 1644 1644 AssertPtrReturn(pIoCtx, VERR_INVALID_POINTER); 1645 1645 AssertReturn(cbToWrite, VERR_INVALID_PARAMETER); 1646 AssertReturn(uOffset + cbToWrite <= pImage->cbSize, VERR_INVALID_PARAMETER);1646 AssertReturn(uOffset + cbToWrite <= RT_ALIGN_64(pImage->cbSize, pImage->cbDataBlock), VERR_INVALID_PARAMETER); /* The image size might not be on a data block size boundary. */ 1647 1647 1648 1648 if (pImage->pBlockAllocationTable)
Note:
See TracChangeset
for help on using the changeset viewer.

