Changeset 62448 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Jul 22, 2016 2:51:49 PM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/common/zip
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r57372 r62448 478 478 if (RT_SUCCESS(rc)) 479 479 { 480 uint8_t *offStart = pu8Buf;481 480 pu8Buf += pThis->cdh.cbFilename; 482 481 cb = pThis->cdh.cbExtra; … … 767 766 static DECLCALLBACK(int) rtZipPkzipFssBaseObj_Close(void *pvThis) 768 767 { 769 PRTZIPPKZIPBASEOBJ pThis = (PRTZIPPKZIPBASEOBJ)pvThis; 770 768 NOREF(pvThis); 771 769 return VINF_SUCCESS; 772 770 } -
trunk/src/VBox/Runtime/common/zip/tarcmd.cpp
r59826 r62448 401 401 } 402 402 403 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) 403 404 404 405 /** … … 463 464 } 464 465 466 #endif /* !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) */ 465 467 466 468 … … 596 598 rc, pszName); 597 599 598 const char *pszLinkType = NULL;599 600 char szTarget[RTPATH_MAX]; 600 601 szTarget[0] = '\0'; -
trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp
r57358 r62448 477 477 return rtZipUnzipDoWithMembers(&Opts, rtZipUnzipCmdExtractCallback, &cFiles, &cBytes); 478 478 } 479 480 return RTEXITCODE_SUCCESS; 481 } 479 } -
trunk/src/VBox/Runtime/common/zip/zip.cpp
r60048 r62448 531 531 return zipErrConvertFromZlib(rc, true /*fCompressing*/); 532 532 } 533 return VINF_SUCCESS;534 533 } 535 534
Note:
See TracChangeset
for help on using the changeset viewer.