summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-09-10 11:38:40 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-09-10 11:38:40 -0600
commit669c2200146850f70228b5a1323156c506f8e224 (patch)
tree1548ad36f83852e0c11eb94fc5d131927664cc91 /nuttx/ChangeLog
parent2a9410a2ae8ce12d6c0bbf768d6d8d82281d97c9 (diff)
downloadnuttx-669c2200146850f70228b5a1323156c506f8e224.tar.gz
nuttx-669c2200146850f70228b5a1323156c506f8e224.tar.bz2
nuttx-669c2200146850f70228b5a1323156c506f8e224.zip
Fix a reference counting error in the USB host mass storage class
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9be16a33a..8aa5efa1a 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -5526,4 +5526,8 @@
transfer errors while attempt to initialize, don't bother with
the startup retries; abort immediately so that the device will
be reset and we can try again (2013-9-9).
+ * drivers/usbhost/usbhost_storagge: Correct a reference counting
+ error: When an MSC device transfer fails while waiting for
+ UnitTestReady (see 2013-9-9), the reference count was not being
+ decremented. The end result is a memory leak (2013-9-10).