mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Fix regression in vQueueAddToRegistry. (#315)
This commit is contained in:
parent
d8770748ff
commit
71f5af4e0f
1 changed files with 1 additions and 1 deletions
2
queue.c
2
queue.c
|
@ -2755,7 +2755,7 @@ BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )
|
|||
}
|
||||
}
|
||||
|
||||
if( pxEntryToWrite == NULL )
|
||||
if( pxEntryToWrite != NULL )
|
||||
{
|
||||
/* Store the information on this queue. */
|
||||
pxEntryToWrite->pcQueueName = pcQueueName;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue