VirtualBox

Changeset 93510 in vbox for trunk/src/VBox/Runtime/common/fs


Ignore:
Timestamp:
Jan 31, 2022 7:51:43 PM (3 years ago)
Author:
vboxsync
Message:

IPRT/isovfs.cpp: Allow seeking beyond 4 GiB. bugref:9781

File:
1 edited

Legend:

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

    r93115 r93510  
    20962096    if (offNew >= 0)
    20972097    {
    2098         if (offNew <= _4G)
    2099         {
    2100             pThis->offFile = offNew;
    2101             *poffActual    = offNew;
    2102             return VINF_SUCCESS;
    2103         }
    2104         return VERR_OUT_OF_RANGE;
     2098        pThis->offFile = offNew;
     2099        *poffActual    = offNew;
     2100        return VINF_SUCCESS;
    21052101    }
    21062102    return VERR_NEGATIVE_SEEK;
Note: See TracChangeset for help on using the changeset viewer.

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