summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-16 14:07:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-16 14:07:17 +0000
commitdd9ad586ffe578ab4176f594e0b803291bc2d443 (patch)
treee3f36345049a20b9fd3bdf2eeb47582bfa2700e9 /nuttx/ChangeLog
parent7da9d707ebf877eeda8d126a8489997cc32eaa5d (diff)
downloadnuttx-dd9ad586ffe578ab4176f594e0b803291bc2d443.tar.gz
nuttx-dd9ad586ffe578ab4176f594e0b803291bc2d443.tar.bz2
nuttx-dd9ad586ffe578ab4176f594e0b803291bc2d443.zip
Fix a stray write into the FAT
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3958 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index a5aaa89a2..216565f95 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2076,7 +2076,7 @@
* sched/clock_gettime.c: Correct an error in the tv_nsec calculation
that happens only config CONFIG_RTC is enabled.
* arch/arm/src/stm32/stm32_i2c.c: Correct some bugs related to waiting
- to the I2C STOP condition to be cleared.
+ for the I2C STOP condition to be cleared.
6.10 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -2089,3 +2089,7 @@
* fs/fat/fs_fat32.c: Fix a critical bug in the write logic: It a tiny write
cross a sector boundary, then two sector writes will occur. The first part
in the first sector may be written to the wrong sector number.
+ * fs/fat/fs_fat32util.c: Fix a stray write into the FAT (always sector 964 on
+ FAT32). This bug will cause some lost chains. I'm sure this bug could
+ corrupt files but at present, the only thing I have seen is that before
+ fixing this bug, the Windows chkdsk utility would report these lost chains.