mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 04:20:28 +00:00
No need to free a known null...
This commit is contained in:
parent
4b96b5814f
commit
888ba881ec
@ -618,8 +618,8 @@ static bool rarch_game_specific_options(char **output)
|
|||||||
if (core_name[0] == '\0' || game_name[0] == '\0')
|
if (core_name[0] == '\0' || game_name[0] == '\0')
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
RARCH_LOG("Per-game Options: core name: %s\n", core_name);
|
RARCH_LOG("Per-Game Options: core name: %s\n", core_name);
|
||||||
RARCH_LOG("Per-game Options: game name: %s\n", game_name);
|
RARCH_LOG("Per-Game Options: game name: %s\n", game_name);
|
||||||
|
|
||||||
|
|
||||||
/* Config directory: config_directory.
|
/* Config directory: config_directory.
|
||||||
@ -631,7 +631,7 @@ static bool rarch_game_specific_options(char **output)
|
|||||||
fill_pathname_basedir(config_directory, global->path.config, PATH_MAX_LENGTH);
|
fill_pathname_basedir(config_directory, global->path.config, PATH_MAX_LENGTH);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
RARCH_WARN("Per-game Options: no config directory set\n");
|
RARCH_WARN("Per-Game Options: no config directory set\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -644,11 +644,10 @@ static bool rarch_game_specific_options(char **output)
|
|||||||
option_file = config_file_new(game_path);
|
option_file = config_file_new(game_path);
|
||||||
if (option_file)
|
if (option_file)
|
||||||
{
|
{
|
||||||
RARCH_LOG("Per-game options: game-specific core options found at %s\n", game_path);
|
RARCH_LOG("Per-Game Options: game-specific core options found at %s\n", game_path);
|
||||||
*output = game_path;
|
*output = game_path;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
config_file_free(option_file);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user