Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bartell <pbartell@amazon.com>2021-04-19 21:20:23 +0300
committerGitHub <noreply@github.com>2021-04-19 21:20:23 +0300
commit71f5af4e0f8d5fad2c4d83c43aa6748eb6cfaaf9 (patch)
tree0d936ded09a16d205d51dd6bec1e2f8d3ce6dac3 /queue.c
parentd8770748ffb5f832d5a2aa8a09d0e160655a5cf1 (diff)
Fix regression in vQueueAddToRegistry. (#315)
Diffstat (limited to 'queue.c')
-rw-r--r--queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/queue.c b/queue.c
index a60c6ca6b..96065d047 100644
--- a/queue.c
+++ b/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;