components/freertos: fix a bug with an uninitialised return value

introduced in d63dac0
This commit is contained in:
Ivan Grokhotkov 2016-09-26 15:57:54 +08:00
parent 7cef0308dc
commit adfb9fafaa

View file

@ -1156,6 +1156,7 @@ Queue_t * const pxQueue = ( Queue_t * ) xQueue;
} }
} }
#endif /* configUSE_QUEUE_SETS */ #endif /* configUSE_QUEUE_SETS */
xReturn = pdPASS;
} }
else else
{ {