mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Check if global is non-NULL instead
This commit is contained in:
parent
e7c842ae1f
commit
68de1b571f
@ -304,12 +304,11 @@ static int playlist_association_left(unsigned type, const char *label,
|
|||||||
{
|
{
|
||||||
int i, next, found, current = 0;
|
int i, next, found, current = 0;
|
||||||
char core_path[PATH_MAX_LENGTH] = {0};
|
char core_path[PATH_MAX_LENGTH] = {0};
|
||||||
|
char new_playlist_cores[PATH_MAX_LENGTH] = {0};
|
||||||
global_t *global = global_get_ptr();
|
global_t *global = global_get_ptr();
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
const char *path = path_basename(label);
|
const char *path = path_basename(label);
|
||||||
char new_playlist_cores[PATH_MAX_LENGTH] = {0};
|
core_info_list_t *list = global ? global->core_info.list : NULL;
|
||||||
|
|
||||||
core_info_list_t *list = (global->core_info.list) ? global->core_info.list : NULL;
|
|
||||||
if (!list)
|
if (!list)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
@ -329,12 +329,11 @@ static int playlist_association_right(unsigned type, const char *label,
|
|||||||
{
|
{
|
||||||
int i, next, found, current = 0;
|
int i, next, found, current = 0;
|
||||||
char core_path[PATH_MAX_LENGTH] = {0};
|
char core_path[PATH_MAX_LENGTH] = {0};
|
||||||
|
char new_playlist_cores[PATH_MAX_LENGTH] = {0};
|
||||||
global_t *global = global_get_ptr();
|
global_t *global = global_get_ptr();
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
const char *path = path_basename(label);
|
const char *path = path_basename(label);
|
||||||
char new_playlist_cores[PATH_MAX_LENGTH] = {0};
|
core_info_list_t *list = global ? global->core_info.list : NULL;
|
||||||
|
|
||||||
core_info_list_t *list = (global->core_info.list) ? global->core_info.list : NULL;
|
|
||||||
if (!list)
|
if (!list)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user