Changeset 69903 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Dec 1, 2017 6:01:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/ntfsvfs.cpp
r69902 r69903 1010 1010 return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT, 1011 1011 "Bad MFT record %#RX64: Attribute (@%#x): cbAllocated (%#RX64) is negative", 1012 pRec->TreeNode.Key, offRec, cbAllocated , pThis->cbCluster);1012 pRec->TreeNode.Key, offRec, cbAllocated); 1013 1013 if ((uint64_t)cbAllocated & (pThis->cbCluster - 1)) 1014 1014 return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT, … … 1020 1020 return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT, 1021 1021 "Bad MFT record %#RX64: Attribute (@%#x): cbData (%#RX64) is negative", 1022 pRec->TreeNode.Key, offRec, cbData , pThis->cbCluster);1022 pRec->TreeNode.Key, offRec, cbData); 1023 1023 1024 1024 int64_t const cbInitialized = RT_LE2H_U64(pAttrHdr->u.NonRes.cbInitialized); … … 1026 1026 return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT, 1027 1027 "Bad MFT record %#RX64: Attribute (@%#x): cbInitialized (%#RX64) is negative", 1028 pRec->TreeNode.Key, offRec, cbInitialized , pThis->cbCluster);1028 pRec->TreeNode.Key, offRec, cbInitialized); 1029 1029 if (cbMin >= NTFSATTRIBHDR_SIZE_NONRES_COMPRESSED) 1030 1030 { … … 1033 1033 return RTERRINFO_LOG_REL_SET_F(pErrInfo, VERR_VFS_BOGUS_FORMAT, 1034 1034 "Bad MFT record %#RX64: Attribute (@%#x): cbCompressed (%#RX64) is negative", 1035 pRec->TreeNode.Key, offRec, cbCompressed , pThis->cbCluster);1035 pRec->TreeNode.Key, offRec, cbCompressed); 1036 1036 } 1037 1037 }
Note:
See TracChangeset
for help on using the changeset viewer.