From 780806feb42261142476dc8c0027252e33f4680c Mon Sep 17 00:00:00 2001 From: wdfk-prog <1425075683@qq.com> Date: Sun, 11 Jun 2023 23:04:18 +0800 Subject: [PATCH] [rtdef] RT_IS_ALIGN marco add a null address exclusive --- include/rtdef.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/rtdef.h b/include/rtdef.h index eb5f047f1b..1f0610cbcd 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -393,8 +393,9 @@ typedef int (*init_fn_t)(void); * Return true(1) or false(0). * RT_IS_ALIGN(128, 4) is judging whether 128 aligns with 4. * The result is 1, which means 128 aligns with 4. + * @note If the address is NULL, false(0) will be returned */ -#define RT_IS_ALIGN(addr, align) (!(addr & (align - 1))) +#define RT_IS_ALIGN(addr, align) ((!(addr & (align - 1))) && (addr != RT_NULL)) /** * @ingroup BasicDef