Changeset 90215 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 15, 2021 4:40:37 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145752
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isovfs.cpp
r84155 r90215 5552 5552 "Logical block size for joliet volume descriptor differs from primary: %#RX16 vs %#RX16\n", 5553 5553 ISO9660_GET_ENDIAN(&pVolDesc->cbLogicalBlock), pThis->cbBlock); 5554 if (ISO9660_GET_ENDIAN(&pVolDesc->VolumeSpaceSize) != pThis->cBlocksInPrimaryVolumeSpace) 5554 /* Used to be !=, changed to > for ubuntu 20.10 and later. Wonder if they exclude a few files 5555 and thus end up with a different total. Obviously, this test is a big bogus, as we don't 5556 really seem to care about the value at all... */ 5557 if (ISO9660_GET_ENDIAN(&pVolDesc->VolumeSpaceSize) > pThis->cBlocksInPrimaryVolumeSpace) 5555 5558 return RTERRINFO_LOG_SET_F(pErrInfo, VERR_VFS_UNSUPPORTED_FORMAT, 5556 5559 "Volume space size for joliet volume descriptor differs from primary: %#RX32 vs %#RX32\n",
Note:
See TracChangeset
for help on using the changeset viewer.