mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(freertos): Fixed an issue where accessing task lists could overrun memory
This commit fixes a potential issue of illegal memory access when accessing the various task lists in FreeRTOS while fetching tasks using the xTaskGetNext() function.
This commit is contained in:
parent
4005c24ce1
commit
b32d47ab98
@ -936,7 +936,7 @@ static List_t * pxGetTaskListByIndex( UBaseType_t uxListIndex )
|
||||
{
|
||||
pxTaskList = &pxReadyTasksLists[ configMAX_PRIORITIES - 1 - uxListIndex ];
|
||||
}
|
||||
else if( uxListIndex < configMAX_PRIORITIES + xNonReadyTaskListsCnt + 1 )
|
||||
else if( uxListIndex < configMAX_PRIORITIES + xNonReadyTaskListsCnt )
|
||||
{
|
||||
pxTaskList = non_ready_task_lists[ uxListIndex - configMAX_PRIORITIES ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user