VirtualBox

Ignore:
Timestamp:
Apr 14, 2017 1:42:04 PM (8 years ago)
Author:
vboxsync
Message:

iprt: fat + vfs updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp

    r62477 r66576  
    16451645
    16461646
    1647 RTDECL(int)         RTVfsIsRangeInUse(RTVFS hVfs, uint64_t off, size_t cb,
    1648                                       bool *pfUsed)
     1647RTDECL(int)         RTVfsIsRangeInUse(RTVFS hVfs, uint64_t off, size_t cb, bool *pfUsed)
    16491648{
    16501649    RTVFSINTERNAL *pThis = hVfs;
     
    16521651    AssertReturn(pThis->uMagic == RTVFS_MAGIC, VERR_INVALID_HANDLE);
    16531652
     1653    if (!pThis->pOps->pfnIsRangeInUse)
     1654        return VERR_NOT_SUPPORTED;
    16541655    RTVfsLockAcquireWrite(pThis->Base.hLock);
    16551656    int rc = pThis->pOps->pfnIsRangeInUse(pThis->Base.pvThis, off, cb, pfUsed);
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