Skip to content
Snippets Groups Projects
Commit bc8d9871 authored by Egbert Eich's avatar Egbert Eich Committed by Tom Rini
Browse files

fs/fat: Don't multiply fatsize with sector size


Bugfix:
Here at this place we need the fat size in sectors not bytes.
This was found during code review when adding support for storage
devices with blocksizes != 512.

Signed-off-by: default avatarEgbert Eich <eich@suse.com>
parent d7ea4d4d
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,6 @@ static int flush_fat_buffer(fsdata *mydata)
__u8 *bufptr = mydata->fatbuf;
__u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
fatlength *= mydata->sect_size;
startblock += mydata->fat_sect;
if (getsize > fatlength)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment