mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[FREELDR] Seek to correct sector number, even after ~4GB.
See issue #6669 for more details. svn path=/trunk/; revision=56984
This commit is contained in:
@@ -1338,7 +1338,7 @@ BOOLEAN FatReadVolumeSectors(PFAT_VOLUME_INFO Volume, ULONG SectorNumber, ULONG
|
||||
//
|
||||
// Seek to right position
|
||||
//
|
||||
Position.HighPart = SectorNumber >> 9;
|
||||
Position.HighPart = SectorNumber >> 23;
|
||||
Position.LowPart = SectorNumber << 9;
|
||||
ret = ArcSeek(Volume->DeviceId, &Position, SeekAbsolute);
|
||||
if (ret != ESUCCESS)
|
||||
|
||||
Reference in New Issue
Block a user