mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
(core_info.c) Small cleanups
This commit is contained in:
parent
05aae1fdb4
commit
d58a3a868c
@ -140,6 +140,9 @@ static void core_info_list_free(core_info_list_t *core_info_list)
|
|||||||
{
|
{
|
||||||
core_info_t *info = (core_info_t*)&core_info_list->list[i];
|
core_info_t *info = (core_info_t*)&core_info_list->list[i];
|
||||||
|
|
||||||
|
if (!info)
|
||||||
|
continue;
|
||||||
|
|
||||||
free(info->path);
|
free(info->path);
|
||||||
free(info->core_name);
|
free(info->core_name);
|
||||||
free(info->systemname);
|
free(info->systemname);
|
||||||
@ -152,7 +155,6 @@ static void core_info_list_free(core_info_list_t *core_info_list)
|
|||||||
free(info->categories);
|
free(info->categories);
|
||||||
free(info->databases);
|
free(info->databases);
|
||||||
free(info->notes);
|
free(info->notes);
|
||||||
if (info->supported_extensions_list)
|
|
||||||
string_list_free(info->supported_extensions_list);
|
string_list_free(info->supported_extensions_list);
|
||||||
string_list_free(info->authors_list);
|
string_list_free(info->authors_list);
|
||||||
string_list_free(info->note_list);
|
string_list_free(info->note_list);
|
||||||
@ -534,8 +536,9 @@ static void core_info_list_get_missing_firmware(
|
|||||||
path[0] = '\0';
|
path[0] = '\0';
|
||||||
*firmware = NULL;
|
*firmware = NULL;
|
||||||
*num_firmware = 0;
|
*num_firmware = 0;
|
||||||
|
info = core_info_find_internal(core_info_list, core);
|
||||||
|
|
||||||
if (!(info = core_info_find_internal(core_info_list, core)))
|
if (!info)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
*firmware = info->firmware;
|
*firmware = info->firmware;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user