From 42f9de1b424626eed6b7a9eaf4d23a0e0b499531 Mon Sep 17 00:00:00 2001 From: Cliff Chen Date: Fri, 15 May 2020 17:53:55 +0800 Subject: [PATCH] [dlmodule] Fix crash when dlmodule exit Signed-off-by: Cliff Chen --- components/libc/libdl/dlmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/libc/libdl/dlmodule.c b/components/libc/libdl/dlmodule.c index 2829b7df7d..314cf52709 100644 --- a/components/libc/libdl/dlmodule.c +++ b/components/libc/libdl/dlmodule.c @@ -124,7 +124,7 @@ static void _dlmodule_exit(void) rt_thread_t thread = (rt_thread_t)object; /* stop timer and suspend thread*/ - if ((thread->stat & RT_THREAD_STAT_MASK) != RT_THREAD_CLOSE || + if ((thread->stat & RT_THREAD_STAT_MASK) != RT_THREAD_CLOSE && (thread->stat & RT_THREAD_STAT_MASK) != RT_THREAD_INIT) { rt_timer_stop(&(thread->thread_timer));