VirtualBox

Changeset 90215 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
Jul 15, 2021 4:40:37 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
145752
Message:

IPRT/isovfs.cpp: Don't be so strict about the joliet volume size. bugref:9852

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/fs/isovfs.cpp

    r84155 r90215  
    55525552                                   "Logical block size for joliet volume descriptor differs from primary: %#RX16 vs %#RX16\n",
    55535553                                   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)
    55555558        return RTERRINFO_LOG_SET_F(pErrInfo, VERR_VFS_UNSUPPORTED_FORMAT,
    55565559                                   "Volume space size for joliet volume descriptor differs from primary: %#RX32 vs %#RX32\n",
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette