mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Merge pull request #8087 from orbea/xmb
xmb: Fix segfault when appending disk images.
This commit is contained in:
commit
15a3df7662
@ -975,7 +975,7 @@ static void xmb_update_thumbnail_path(void *data, unsigned i, char pos)
|
|||||||
xmb_node_t *node = (xmb_node_t*)
|
xmb_node_t *node = (xmb_node_t*)
|
||||||
file_list_get_userdata_at_offset(selection_buf, i);
|
file_list_get_userdata_at_offset(selection_buf, i);
|
||||||
|
|
||||||
if (!string_is_empty(node->fullpath) &&
|
if (node && !string_is_empty(node->fullpath) &&
|
||||||
(pos == 'R' || (pos == 'L' && string_is_equal(xmb_thumbnails_ident('R'),
|
(pos == 'R' || (pos == 'L' && string_is_equal(xmb_thumbnails_ident('R'),
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF)))))
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF)))))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user