diff --git a/components/freertos/tasks.c b/components/freertos/tasks.c index c057cb4c0c..5290168542 100644 --- a/components/freertos/tasks.c +++ b/components/freertos/tasks.c @@ -649,7 +649,7 @@ void taskYIELD_OTHER_CORE( BaseType_t xCoreID, UBaseType_t uxPriority ) BaseType_t i; if (xCoreID != tskNO_AFFINITY) { - if ( curTCB->uxPriority < uxPriority ) { + if ( curTCB->uxPriority < uxPriority ) { // NOLINT(clang-analyzer-core.NullDereference) IDF-685 vPortYieldOtherCore( xCoreID ); } }