diff options
| -rw-r--r-- | firmware/drivers/fat.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index dc933be..936299e 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -966,12 +966,9 @@ int fat_getnext(struct bpb *bpb, /* current or cached sector? */ if ( sectoridx >= SECTOR_SIZE ) { if ( sectoridx >= SECTOR_SIZE*2 ) { - if ( index >= SECTOR_SIZE ) { - if ( index >= SECTOR_SIZE*2 ) - ptr = ent->cached_buf; - else - ptr = lastsector; - } + if ( ( index >= SECTOR_SIZE ) && + ( index < SECTOR_SIZE*2 )) + ptr = lastsector; else ptr = lastsector2; } |