Merge pull request #2555 from heuripedes/master

(XMB) Fix buffer overflow
This commit is contained in:
Twinaphex 2015-12-13 01:42:20 +01:00
commit 83d258e4ea

View File

@ -1535,8 +1535,8 @@ static void xmb_draw_cursor(xmb_handle_t *xmb,
static void xmb_render(void *data)
{
float delta_time, dt;
size_t selection;
unsigned i, end, height = 0;
size_t i, selection;
unsigned end, height = 0;
settings_t *settings = config_get_ptr();
xmb_handle_t *xmb = (xmb_handle_t*)data;