summaryrefslogtreecommitdiffstats
path: root/cpukit/ChangeLog
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-19 02:23:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-19 02:23:03 +0000
commitc4c8efd02782845db7658b1885a6e509ca15a4f1 (patch)
treea738eb756c0b3cf049c426b21d90ccd9685714d8 /cpukit/ChangeLog
parent2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c4c8efd02782845db7658b1885a6e509ca15a4f1.tar.bz2
2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com>
Coverity Id 27 * libblock/src/ramdisk-config.c: Coverity notes that the calloc() is a resource leak. This is allocating memory for a RAM disk which will persist for the life of the system. RTEMS has no "de-initialize" driver call so there is no corresponding free(r). Coverity is correct that it is never freed but this is not a problem.
Diffstat (limited to 'cpukit/ChangeLog')
-rw-r--r--cpukit/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 0bbb27296a..ab4131826f 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,15 @@
2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com>
+ Coverity Id 27
+ * libblock/src/ramdisk-config.c: Coverity notes that the
+ calloc() is a resource leak. This is allocating memory for
+ a RAM disk which will persist for the life of the system. RTEMS
+ has no "de-initialize" driver call so there is no corresponding
+ free(r). Coverity is correct that it is never freed but this is
+ not a problem.
+
+2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* libmisc/stackchk/check.c: Fix warning.
2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com>