Changeset 71002 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Feb 13, 2018 7:04:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomakerimport.cpp
r70395 r71002 2448 2448 uint8_t const *pbEntry = &pThis->abBuf[iEntry * ISO9660_ELTORITO_ENTRY_SIZE]; 2449 2449 uint8_t const idHeader = *pbEntry; 2450 2451 /* KLUDGE ALERT! Older ISO images, like RHEL5-Server-20070208.0-x86_64-DVD.iso lacks 2452 terminator entry. So, quietly stop with an entry that's all zeros. */ 2453 if ( idHeader == ISO9660_ELTORITO_BOOT_INDICATOR_NOT_BOOTABLE /* 0x00 */ 2454 && iEntry != 1 /* default */ 2455 && ASMMemIsZero(pbEntry, ISO9660_ELTORITO_ENTRY_SIZE)) 2456 return rc; 2457 2450 2458 if ( iEntry == 1 /* default*/ 2451 2459 || idHeader == ISO9660_ELTORITO_BOOT_INDICATOR_BOOTABLE
Note:
See TracChangeset
for help on using the changeset viewer.