Changeset 51701 in vbox
- Timestamp:
- Jun 23, 2014 8:26:09 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94486
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r51699 r51701 592 592 if (lfh.u32Magic == RTZIPPKZIPLOCALFILEHDR_MAGIC) 593 593 { 594 size_t cbExtra ;;594 size_t cbExtra = 0; 595 595 rc = rtZipPkzipParseLocalFileHeader(&pThis->PkzipReader, &lfh, &cbExtra); 596 596 if (RT_SUCCESS(rc)) … … 630 630 pThis->offNextCdh += sizeof(cdh) - 1; 631 631 pThis->iCentrDirEntry++; 632 size_t cbExtra ;632 size_t cbExtra = 0; 633 633 rc = rtZipPkzipParseCentrDirHeader(&pThis->PkzipReader, &cdh, &cbExtra); 634 634 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.