This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit ec2faf8dc1832c06018a35242dab993f44d65b20 Author: Jukka Laitinen <[email protected]> AuthorDate: Mon Sep 14 09:37:10 2026 +0300 arch/arm/src/imxrt/imxrt_allocateheap.c: Fix nxstyle issues Add a missing blank line Signed-off-by: Jukka Laitinen <[email protected]> --- arch/arm/src/imxrt/imxrt_allocateheap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/src/imxrt/imxrt_allocateheap.c b/arch/arm/src/imxrt/imxrt_allocateheap.c index 4b7caa4049c..8ad9ed5a4b9 100644 --- a/arch/arm/src/imxrt/imxrt_allocateheap.c +++ b/arch/arm/src/imxrt/imxrt_allocateheap.c @@ -385,6 +385,7 @@ void up_allocate_kheap(void **heap_start, size_t *heap_size) CONFIG_MM_KERNEL_HEAPSIZE; size_t usize = PRIMARY_RAM_END - ubase; int log2; + DEBUGASSERT(ubase < (uintptr_t)PRIMARY_RAM_END); /* Adjust that size to account for MPU alignment requirements.
