Fix regression in vQueueAddToRegistry. (#315)
This commit is contained in:
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. */
|
/* Store the information on this queue. */
|
||||||
pxEntryToWrite->pcQueueName = pcQueueName;
|
pxEntryToWrite->pcQueueName = pcQueueName;
|
||||||
|
Reference in New Issue
Block a user