From adfb9fafaafbee4184bdeb2c2097ff10a4789b82 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 26 Sep 2016 15:57:54 +0800 Subject: [PATCH] components/freertos: fix a bug with an uninitialised return value introduced in d63dac0 --- components/freertos/queue.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/freertos/queue.c b/components/freertos/queue.c index 1fb0552d4..bdd413ea5 100644 --- a/components/freertos/queue.c +++ b/components/freertos/queue.c @@ -1156,6 +1156,7 @@ Queue_t * const pxQueue = ( Queue_t * ) xQueue; } } #endif /* configUSE_QUEUE_SETS */ + xReturn = pdPASS; } else {