mirror of
https://github.com/libretro/RetroArch.git
synced 2025-03-02 22:55:41 +00:00
menu_list_push - early return if label is NULL
This commit is contained in:
parent
92ad93ea5d
commit
cc56ca7c42
@ -342,6 +342,8 @@ void menu_list_push(file_list_t *list,
|
||||
{
|
||||
if (!list)
|
||||
return;
|
||||
if (!label)
|
||||
return;
|
||||
|
||||
file_list_push(list, path, label, type, directory_ptr);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user