فهرست منبع

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

introduced in d63dac0
Ivan Grokhotkov 9 سال پیش
والد
کامیت
adfb9fafaa
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      components/freertos/queue.c

+ 1 - 0
components/freertos/queue.c

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