Take out some more unnecessary NULL string termination
This commit is contained in:
parent
566b4b4520
commit
cedbcb10c6
|
@ -295,9 +295,6 @@ bool gfx_thumbnail_set_system(gfx_thumbnail_path_data_t *path_data,
|
||||||
* matches the database name */
|
* matches the database name */
|
||||||
char *playlist_name = NULL;
|
char *playlist_name = NULL;
|
||||||
char tmp[PATH_MAX_LENGTH];
|
char tmp[PATH_MAX_LENGTH];
|
||||||
|
|
||||||
tmp[0] = '\0';
|
|
||||||
|
|
||||||
strlcpy(tmp, playlist_file, sizeof(tmp));
|
strlcpy(tmp, playlist_file, sizeof(tmp));
|
||||||
playlist_name = path_remove_extension(tmp);
|
playlist_name = path_remove_extension(tmp);
|
||||||
playlist_valid = string_is_equal(playlist_name, system);
|
playlist_valid = string_is_equal(playlist_name, system);
|
||||||
|
@ -517,8 +514,6 @@ bool gfx_thumbnail_set_content_playlist(
|
||||||
{
|
{
|
||||||
char *db_name_no_ext = NULL;
|
char *db_name_no_ext = NULL;
|
||||||
char tmp_buf[PATH_MAX_LENGTH];
|
char tmp_buf[PATH_MAX_LENGTH];
|
||||||
tmp_buf[0] = '\0';
|
|
||||||
|
|
||||||
/* Remove .lpl extension
|
/* Remove .lpl extension
|
||||||
* > path_remove_extension() requires a char * (not const)
|
* > path_remove_extension() requires a char * (not const)
|
||||||
* so have to use a temporary buffer... */
|
* so have to use a temporary buffer... */
|
||||||
|
@ -580,7 +575,6 @@ bool gfx_thumbnail_update_path(
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
thumbnail_path[0] = '\0';
|
|
||||||
content_dir[0] = '\0';
|
content_dir[0] = '\0';
|
||||||
|
|
||||||
if (settings)
|
if (settings)
|
||||||
|
@ -639,9 +633,6 @@ bool gfx_thumbnail_update_path(
|
||||||
char tmp_buf[PATH_MAX_LENGTH];
|
char tmp_buf[PATH_MAX_LENGTH];
|
||||||
const char *type = gfx_thumbnail_get_type(settings,
|
const char *type = gfx_thumbnail_get_type(settings,
|
||||||
path_data, thumbnail_id);
|
path_data, thumbnail_id);
|
||||||
|
|
||||||
tmp_buf[0] = '\0';
|
|
||||||
|
|
||||||
/* > Normal content: assemble path */
|
/* > Normal content: assemble path */
|
||||||
|
|
||||||
/* >> Base + system name */
|
/* >> Base + system name */
|
||||||
|
@ -811,8 +802,6 @@ bool gfx_thumbnail_get_content_dir(
|
||||||
if (!((path_length > 1) && (path_length < PATH_MAX_LENGTH)))
|
if (!((path_length > 1) && (path_length < PATH_MAX_LENGTH)))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
tmp_buf[0] = '\0';
|
|
||||||
|
|
||||||
strlcpy(tmp_buf, path_data->content_path, path_length * sizeof(char));
|
strlcpy(tmp_buf, path_data->content_path, path_length * sizeof(char));
|
||||||
strlcpy(content_dir, path_basename_nocompression(tmp_buf), len);
|
strlcpy(content_dir, path_basename_nocompression(tmp_buf), len);
|
||||||
|
|
||||||
|
|
|
@ -1633,10 +1633,9 @@ static bool override_shader_values(config_file_t *override_conf,
|
||||||
* see if there is an entry for each in the override config */
|
* see if there is an entry for each in the override config */
|
||||||
for (i = 0; i < shader->num_parameters; i++)
|
for (i = 0; i < shader->num_parameters; i++)
|
||||||
{
|
{
|
||||||
entry = config_get_entry(override_conf, shader->parameters[i].id);
|
|
||||||
|
|
||||||
/* If the parameter is in the reference config */
|
/* If the parameter is in the reference config */
|
||||||
if (entry)
|
if ((entry = config_get_entry(
|
||||||
|
override_conf, shader->parameters[i].id)))
|
||||||
{
|
{
|
||||||
struct video_shader_parameter *parameter =
|
struct video_shader_parameter *parameter =
|
||||||
(struct video_shader_parameter*)
|
(struct video_shader_parameter*)
|
||||||
|
|
Loading…
Reference in New Issue