1
0
Fork 0
forked from len0rd/rockbox

mikmod: Uninitialized variable used in a control flow decision

Change-Id: I6df903399361f1df7ca0f766fff4062a984e2ba8
This commit is contained in:
Solomon Peachy 2021-08-05 09:32:51 -04:00
parent f3010c6a8e
commit 566d836ac6

View file

@ -682,7 +682,9 @@ static int main_menu(void)
/* double buffering thread */
static void thread(void)
{
struct queue_event ev;
struct queue_event ev = {
.id = 0,
};
while (1)
{