We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a39b1d commit 98ffa0dCopy full SHA for 98ffa0d
1 file changed
queue.c
@@ -3343,6 +3343,8 @@ BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )
3343
configASSERT( pxQueueSetContainer ); /* LCOV_EXCL_BR_LINE */
3344
configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength );
3345
3346
+ /* pxQueue->pxQueueSetContainer is verified to be non-null by caller. */
3347
+ /* coverity[dereference] */
3348
if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength )
3349
{
3350
const int8_t cTxLock = pxQueueSetContainer->cTxLock;
0 commit comments