From f474e10c753256d1f501fa3e5a8d170b880903eb Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Thu, 11 Jun 2015 23:21:25 +0200 Subject: [PATCH] (XMB) xmb_node_allocate_userdata - call file_list_free_actiondata first before calling file_list_set_actiondata --- menu/drivers/xmb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index 04c9a0739c..540a77fbbb 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -652,6 +652,7 @@ static xmb_node_t *xmb_node_allocate_userdata(xmb_handle_t *xmb, unsigned i) node->zoom = xmb->categories.active.zoom; } + file_list_free_actiondata(xmb->horizontal_list, i); file_list_set_actiondata(xmb->horizontal_list, i, node); return node;