VirtualBox

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


Ignore:
Timestamp:
Dec 1, 2017 6:01:03 PM (7 years ago)
Author:
vboxsync
Message:

IPRT/ntfsvfs.h: Working on reading the root dir. Did some cleanups. [build fixes]

File:
1 edited

Legend:

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

    r69902 r69903  
    10101010                return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT,
    10111011                                               "Bad MFT record %#RX64: Attribute (@%#x): cbAllocated (%#RX64) is negative",
    1012                                                pRec->TreeNode.Key, offRec, cbAllocated, pThis->cbCluster);
     1012                                               pRec->TreeNode.Key, offRec, cbAllocated);
    10131013            if ((uint64_t)cbAllocated & (pThis->cbCluster - 1))
    10141014                return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT,
     
    10201020                return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT,
    10211021                                               "Bad MFT record %#RX64: Attribute (@%#x): cbData (%#RX64) is negative",
    1022                                                pRec->TreeNode.Key, offRec, cbData, pThis->cbCluster);
     1022                                               pRec->TreeNode.Key, offRec, cbData);
    10231023
    10241024            int64_t const cbInitialized = RT_LE2H_U64(pAttrHdr->u.NonRes.cbInitialized);
     
    10261026                return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT,
    10271027                                               "Bad MFT record %#RX64: Attribute (@%#x): cbInitialized (%#RX64) is negative",
    1028                                                pRec->TreeNode.Key, offRec, cbInitialized, pThis->cbCluster);
     1028                                               pRec->TreeNode.Key, offRec, cbInitialized);
    10291029            if (cbMin >= NTFSATTRIBHDR_SIZE_NONRES_COMPRESSED)
    10301030            {
     
    10331033                    return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT,
    10341034                                                   "Bad MFT record %#RX64: Attribute (@%#x): cbCompressed (%#RX64) is negative",
    1035                                                    pRec->TreeNode.Key, offRec, cbCompressed, pThis->cbCluster);
     1035                                                   pRec->TreeNode.Key, offRec, cbCompressed);
    10361036            }
    10371037        }
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