mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Cleanup
This commit is contained in:
parent
0feca47ec5
commit
fe21aa49b4
@ -101,20 +101,14 @@ const char* config_get_menu_driver_options(void)
|
|||||||
for (i = 0; menu_driver_find_handle(i); i++)
|
for (i = 0; menu_driver_find_handle(i); i++)
|
||||||
{
|
{
|
||||||
const char *opt = menu_driver_find_ident(i);
|
const char *opt = menu_driver_find_ident(i);
|
||||||
options_len += strlen(opt) + 1;
|
options_len += strlen(opt) + 1;
|
||||||
string_list_append(options_l, opt, attr);
|
string_list_append(options_l, opt, attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
options = (char*)calloc(options_len, sizeof(char));
|
options = (char*)calloc(options_len, sizeof(char));
|
||||||
|
|
||||||
if (!options)
|
if (options)
|
||||||
{
|
string_list_join_concat(options, options_len, options_l, "|");
|
||||||
string_list_free(options_l);
|
|
||||||
options_l = NULL;
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
string_list_join_concat(options, options_len, options_l, "|");
|
|
||||||
|
|
||||||
string_list_free(options_l);
|
string_list_free(options_l);
|
||||||
options_l = NULL;
|
options_l = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user