From 74013c220aceb1f0ef2a5ac666ee8621fc2c9b52 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 25 Jan 2018 15:44:35 +0100 Subject: [PATCH] fix read of uninitialized memory. --- menu/menu_driver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/menu/menu_driver.c b/menu/menu_driver.c index 7d0cb6fc62..787252526e 100644 --- a/menu/menu_driver.c +++ b/menu/menu_driver.c @@ -1136,6 +1136,7 @@ void menu_display_draw_cursor( draw.matrix_data = NULL; draw.texture = texture; draw.prim_type = MENU_DISPLAY_PRIM_TRIANGLESTRIP; + draw.pipeline.id = 0; menu_display_draw(&draw);