Changeset 107455 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 7, 2025 10:20:24 AM (12 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/tarvfswriter.cpp
r106061 r107455 707 707 *pObjInfo = pPush->ObjInfo; 708 708 pObjInfo->cbObject = pPush->cbCurrent; 709 pObjInfo->cbAllocated = RT_ALIGN_64(pPush->cbCurrent, rtZipTarFssWrite_GetBlockSize(pPush->pParent)); 709 size_t const cbBlock = rtZipTarFssWrite_GetBlockSize(pPush->pParent); 710 pObjInfo->cbAllocated = RT_ALIGN_64(pPush->cbCurrent, cbBlock); 710 711 711 712 /* Additional info. */
Note:
See TracChangeset
for help on using the changeset viewer.