(xmb) Fix memleak

Due to file_list_free()'s behavior of free()ing userdata as if it was a
simple, contiguous structure xmb_node_t's fullpath member wasn't being
free()'d.
This commit is contained in:
Higor Eurípedes 2017-09-03 10:25:15 -03:00
parent a7e6b02107
commit 718eeb4a39

View File

@ -4418,7 +4418,7 @@ menu_ctx_driver_t menu_ctx_xmb = {
xmb_menu_init_list,
xmb_list_insert,
NULL,
NULL,
xmb_list_clear, /* free */
xmb_list_clear,
xmb_list_cache,
xmb_list_push,