summaryrefslogtreecommitdiff
path: root/firmware/drivers/fat.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/fat.c')
-rw-r--r--firmware/drivers/fat.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index dc933be599..936299e122 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -966,12 +966,9 @@ int fat_getnext(struct bpb *bpb,
966 /* current or cached sector? */ 966 /* current or cached sector? */
967 if ( sectoridx >= SECTOR_SIZE ) { 967 if ( sectoridx >= SECTOR_SIZE ) {
968 if ( sectoridx >= SECTOR_SIZE*2 ) { 968 if ( sectoridx >= SECTOR_SIZE*2 ) {
969 if ( index >= SECTOR_SIZE ) { 969 if ( ( index >= SECTOR_SIZE ) &&
970 if ( index >= SECTOR_SIZE*2 ) 970 ( index < SECTOR_SIZE*2 ))
971 ptr = ent->cached_buf; 971 ptr = lastsector;
972 else
973 ptr = lastsector;
974 }
975 else 972 else
976 ptr = lastsector2; 973 ptr = lastsector2;
977 } 974 }