Skip to content

Commit 71f5af4

Browse files
authored
Fix regression in vQueueAddToRegistry. (#315)
1 parent d877074 commit 71f5af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2755,7 +2755,7 @@ BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )
27552755
}
27562756
}
27572757

2758-
if( pxEntryToWrite == NULL )
2758+
if( pxEntryToWrite != NULL )
27592759
{
27602760
/* Store the information on this queue. */
27612761
pxEntryToWrite->pcQueueName = pcQueueName;

0 commit comments

Comments
 (0)