summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-23 12:09:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-23 12:09:09 +0000
commite59a6655733c50c3a49acf376492dee36c6cc0c0 (patch)
tree7b50d559116131987cac700bad4737be3585e726 /nuttx/ChangeLog
parent940ad0838da7d5bc2622606a0b42225683494f11 (diff)
downloadnuttx-e59a6655733c50c3a49acf376492dee36c6cc0c0.tar.gz
nuttx-e59a6655733c50c3a49acf376492dee36c6cc0c0.tar.bz2
nuttx-e59a6655733c50c3a49acf376492dee36c6cc0c0.zip
Fix potential memory leak
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3312 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index e3b2eb7bf..4bd2b421d 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1463,9 +1463,8 @@
a USB host HID keyboard configuraion.
* drivers/usbhost/hid_parser.c -- Leverages the LUFA HID parser written by
Dean Camera.
- * lib/lib_getopt() -- Correct an error in the getopt() logic: On certain error
- return cases, the state was not being reset correcly and incorrect behaviors
- could occur on subsequent calls to getopt().
+ * examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
+ before all parameters are parsed, you can leave getopt() in a strange state.