Changeset 107423 in vbox
- Timestamp:
- Jan 6, 2025 4:30:08 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 166475
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/RAW.cpp
r106061 r107423 189 189 } 190 190 191 rc = vdIfIoIntFileClose(pImage->pIfIo, pImage->pStorage); 191 int rc2 = vdIfIoIntFileClose(pImage->pIfIo, pImage->pStorage); 192 if (RT_FAILURE(rc2) && RT_SUCCESS(rc)) 193 rc = rc2; 192 194 pImage->pStorage = NULL; 193 195 } … … 365 367 366 368 uint32_t cPrimaryVolDescs = 0; 367 uint32_t cSupplementaryVolDescs = 0;368 uint32_t cBootRecordVolDescs = 0;369 /*uint32_t cSupplementaryVolDescs = 0;*/ 370 /*uint32_t cBootRecordVolDescs = 0;*/ 369 371 uint32_t offVolDesc = 16 * cbSector; 370 372 enum … … 423 425 else if (Buf.VolDescHdr.bDescType == ISO9660VOLDESC_TYPE_SUPPLEMENTARY) 424 426 { 425 cSupplementaryVolDescs++;427 /*cSupplementaryVolDescs++;*/ 426 428 if (Buf.VolDescHdr.bDescVersion != ISO9660SUPVOLDESC_VERSION) 427 429 return RTERRINFO_LOG_SET_F(pErrInfo, VERR_VFS_UNSUPPORTED_FORMAT, … … 432 434 else if (Buf.VolDescHdr.bDescType == ISO9660VOLDESC_TYPE_BOOT_RECORD) 433 435 { 434 cBootRecordVolDescs++;436 /*cBootRecordVolDescs++;*/ 435 437 } 436 438 else if (Buf.VolDescHdr.bDescType == ISO9660VOLDESC_TYPE_TERMINATOR)
Note:
See TracChangeset
for help on using the changeset viewer.