Changeset 83739 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Apr 17, 2020 8:51:27 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137257
- Location:
- trunk/src/VBox/Runtime/common/fs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isovfs.cpp
r82968 r83739 834 834 else 835 835 { 836 size_t cbSkip = (offDirRec + pVol->cbSector) & ~(pVol->cbSector - 1U);836 uint64_t cbSkip = (offDirRec + pVol->cbSector) & ~(uint64_t)(pVol->cbSector - 1U); 837 837 offDirRec += cbSkip; 838 pDirRec = (PCISO9660DIRREC)((uintptr_t)pDirRec + cbSkip);838 pDirRec = (PCISO9660DIRREC)((uintptr_t)pDirRec + (size_t)cbSkip); 839 839 } 840 840 } -
trunk/src/VBox/Runtime/common/fs/ntfsvfs.cpp
r82968 r83739 4522 4522 */ 4523 4523 Assert(RT_IS_POWER_OF_TWO(pThis->cbBitmapAlloc)); 4524 uint64_t offLoad = offInBitmap & ~( pThis->cbBitmapAlloc - 1);4524 uint64_t offLoad = offInBitmap & ~(uint64_t)(pThis->cbBitmapAlloc - 1); 4525 4525 uint32_t cbLoad = (uint32_t)RT_MIN(cbWholeBitmap - offLoad, pThis->cbBitmapAlloc); 4526 4526
Note:
See TracChangeset
for help on using the changeset viewer.