[PATCH 1/1] Fix lseek on fat filesystems.
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Tue Sep 17 03:47:44 EDT 2013
From: Fargier Sylvain <sylvain.fargier at somfy.com>
FILE object was not updated properly when seeking.
Signed-off-by: Fargier Sylvain <sylvain.fargier at somfy.com>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
---
fs/fat/fat.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index 871fe4b..15879c4 100644
--- a/fs/fat/fat.c
+++ b/fs/fat/fat.c
@@ -277,6 +277,7 @@ static loff_t fat_lseek(struct device_d *dev, FILE *f, loff_t pos)
if (ret)
return ret;
+ f->pos = pos;
return pos;
}
--
1.8.4.rc1
More information about the barebox
mailing list