Changeset 81649 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Nov 4, 2019 12:10:50 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/ntfsvfs.cpp
r80585 r81649 1053 1053 case 3: cClustersInRun |= (uint32_t)pbPairs[offPairs + 2] << 16; RT_FALL_THRU(); 1054 1054 case 2: cClustersInRun |= (uint16_t)pbPairs[offPairs + 1] << 8; RT_FALL_THRU(); 1055 case 1: cClustersInRun |= (uint16_t)pbPairs[offPairs + 0] << 0; RT_FALL_THRU();1055 case 1: cClustersInRun |= (uint16_t)pbPairs[offPairs + 0] << 0; 1056 1056 } 1057 1057 offPairs += cbRunField;
Note:
See TracChangeset
for help on using the changeset viewer.