- Timestamp:
- Jun 1, 2017 8:39:43 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/tarvfswriter.cpp
r67206 r67220 1212 1212 if (iSparse != 0) 1213 1213 { 1214 Assert(pThis->aHdrs[0].GnuSparse.isextended == 0); 1215 rc = RTVfsIoStrmWrite(pThis->hVfsIos, &pThis->aHdrs[0], sizeof(pThis->aHdrs[0]), true /*fBlocking*/, NULL); 1214 if (cSparse != RT_ELEMENTS(pThis->aHdrs[0].Gnu.sparse)) 1215 Assert(pThis->aHdrs[0].GnuSparse.isextended == 0); 1216 else 1217 { 1218 Assert(pThis->aHdrs[0].Gnu.isextended == 0); 1219 rc = rtZipTarFssWriter_ChecksumHdr(&pThis->aHdrs[0]); 1220 } 1221 if (RT_SUCCESS(rc)) 1222 rc = RTVfsIoStrmWrite(pThis->hVfsIos, &pThis->aHdrs[0], sizeof(pThis->aHdrs[0]), true /*fBlocking*/, NULL); 1216 1223 } 1217 1224 pThis->cHdrs = 0;
Note:
See TracChangeset
for help on using the changeset viewer.