Changeset 51698 in vbox
- Timestamp:
- Jun 23, 2014 4:54:17 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r51697 r51698 438 438 static uint64_t rtZipPkzipReaderOffLocalHeader(PRTZIPPKZIPREADER pThis) 439 439 { 440 if (pThis->fZip64Ex && pThis->cdh.offLocalFileHeader == -1U)440 if (pThis->fZip64Ex && pThis->cdh.offLocalFileHeader == (uint32_t)-1) 441 441 return pThis->cd64ex.offLocalFileHeader; 442 442 … … 450 450 static uint64_t rtZipPkzipReaderUncompressed(PRTZIPPKZIPREADER pThis) 451 451 { 452 if (pThis->fZip64Ex && pThis->cdh.cbUncompressed == -1U)452 if (pThis->fZip64Ex && pThis->cdh.cbUncompressed == (uint32_t)-1) 453 453 return pThis->cd64ex.cbUncompressed; 454 454 … … 462 462 static uint64_t rtZipPkzipReaderCompressed(PRTZIPPKZIPREADER pThis) 463 463 { 464 if (pThis->fZip64Ex && pThis->cdh.cbCompressed == -1U)464 if (pThis->fZip64Ex && pThis->cdh.cbCompressed == (uint32_t)-1) 465 465 return pThis->cd64ex.cbCompressed; 466 466
Note:
See TracChangeset
for help on using the changeset viewer.

