From 254b5bf3a726a0e8c8264d3d0020143e67b7360e Mon Sep 17 00:00:00 2001 From: Guillaume Galeazzi Date: Mon, 1 Sep 2025 13:03:58 +0200 Subject: [PATCH] Do not analyze when stack overflow has occured --- common/inc/tx_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/inc/tx_thread.h b/common/inc/tx_thread.h index 6500d40d..8729263d 100644 --- a/common/inc/tx_thread.h +++ b/common/inc/tx_thread.h @@ -239,7 +239,7 @@ _tx_thread_stack_error_handler((thread_ptr)); \ TX_DISABLE \ } \ - if (*(((ULONG *) (thread_ptr) -> tx_thread_stack_highest_ptr) - 1) != TX_STACK_FILL) \ + else if (*(((ULONG *) (thread_ptr) -> tx_thread_stack_highest_ptr) - 1) != TX_STACK_FILL) \ { \ TX_RESTORE \ _tx_thread_stack_analyze((thread_ptr)); \