summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-30 14:24:38 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-30 14:24:38 -0600
commitf469ebe852be64d8839117ee818ede523fc0b99f (patch)
treeff2a53e5c5f80280bde89a9b82ae02a9214b3d09 /nuttx/ChangeLog
parent1272dfcdd4f1aaf5aca3066c130b17e160e6c82b (diff)
downloadnuttx-f469ebe852be64d8839117ee818ede523fc0b99f.tar.gz
nuttx-f469ebe852be64d8839117ee818ede523fc0b99f.tar.bz2
nuttx-f469ebe852be64d8839117ee818ede523fc0b99f.zip
sscanf(): Was returning the wrong number of conversions in many cases; Also, needs to return EOF if there were no conversions
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 635462d39..71baf68cf 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -7084,4 +7084,7 @@
own file (2014-3-30).
* arch/arm/src/sama5/sam_boot.c: Fix some backward conditional
compilation (2014-3-30).
+ * libc/stdio/lib_sccanf.c: Fix a counting error in the return
+ value from sscanf(). Noted by kfrolov. Also, sscanf() should
+ return EOF if no values were converted (2014-3-30).