diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-20 18:28:56 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-20 18:28:56 +0000 |
commit | c010f378caa66e18145d94e35a7123e9209f46d1 (patch) | |
tree | a66a751caca281af3a651ebc343d3334df9f8ab4 | |
parent | ce79109195102580ac192f3f70cc2d30332911c6 (diff) | |
download | ChibiOS-c010f378caa66e18145d94e35a7123e9209f46d1.tar.gz ChibiOS-c010f378caa66e18145d94e35a7123e9209f46d1.tar.bz2 ChibiOS-c010f378caa66e18145d94e35a7123e9209f46d1.zip |
Fixed bug #804.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11046 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/common/oslib/include/chheap.h | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/os/common/oslib/include/chheap.h b/os/common/oslib/include/chheap.h index 7c85efe7f..6cce85b3c 100644 --- a/os/common/oslib/include/chheap.h +++ b/os/common/oslib/include/chheap.h @@ -173,7 +173,7 @@ static inline void *chHeapAlloc(memory_heap_t *heapp, size_t size) { */
static inline size_t chHeapGetSize(const void *p) {
- return ((heap_header_t *)p)->used.size;
+ return ((heap_header_t *)p - 1U)->used.size;
}
#endif /* CH_CFG_USE_HEAP == TRUE */
diff --git a/readme.txt b/readme.txt index 5cf5c6b86..ac083134d 100644 --- a/readme.txt +++ b/readme.txt @@ -155,6 +155,8 @@ Updated the various platform.mk implementing "smart build" mode.
- HAL: Fixed DAC CH2 marked as not present in STM32F091 registry (bug #905)
(backported to 17.6.4 and 16.1.10).
+- LIB: Fixed chHeapGetSize value is not obtained from the header (bug #904)
+ (backported to 17.6.4).
- HAL: Fixed ADC does not build on STM32F030 (bug #903)(backported to 17.6.4).
- LIB: Fixed typo for function evtStop (bug #897)(backported to 17.6.4
and 16.1.10).
|