Changeset 104552 in vbox
- Timestamp:
- May 8, 2024 12:56:58 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp
r98103 r104552 341 341 RTFOFF cBytes = 0; 342 342 rcExit = pfnCallback(pOpts, hVfsObj, pszName, rcExit, &cBytes); 343 if (rcExit != RTEXITCODE_SUCCESS) 344 break; 343 345 344 346 cBytesSum += cBytes; … … 358 360 for (uint32_t iFile = 0; iFile <pOpts->cFiles; iFile++) 359 361 if (!ASMBitTest(pbmFound, iFile)) 360 { 361 RTMsgError("%s: Was not found in the archive", pOpts->papszFiles[iFile]); 362 rcExit = RTEXITCODE_FAILURE; 363 } 362 rcExit = RTMsgErrorExitFailure("%s: Was not found in the archive", pOpts->papszFiles[iFile]); 364 363 365 364 RTVfsFsStrmRelease(hVfsFssIn); … … 371 370 *pcBytes = cBytesSum; 372 371 373 return RTEXITCODE_SUCCESS;372 return rcExit; 374 373 } 375 374
Note:
See TracChangeset
for help on using the changeset viewer.