summaryrefslogtreecommitdiff
path: root/apps/playlist_catalog.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_catalog.c')
-rw-r--r--apps/playlist_catalog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c
index 84a62e3474..a4950e22e8 100644
--- a/apps/playlist_catalog.c
+++ b/apps/playlist_catalog.c
@@ -78,7 +78,7 @@ static int initialize_catalog(void)
78 78
79 /* fall back to default directory if no or invalid config */ 79 /* fall back to default directory if no or invalid config */
80 if (default_dir) 80 if (default_dir)
81 strncpy(playlist_dir, PLAYLIST_CATALOG_DEFAULT_DIR, 81 strlcpy(playlist_dir, PLAYLIST_CATALOG_DEFAULT_DIR,
82 sizeof(playlist_dir)); 82 sizeof(playlist_dir));
83 83
84 playlist_dir_length = strlen(playlist_dir); 84 playlist_dir_length = strlen(playlist_dir);
@@ -189,7 +189,7 @@ static char* playlist_callback_name(int selected_item, void* data,
189{ 189{
190 char** playlists = (char**) data; 190 char** playlists = (char**) data;
191 191
192 strncpy(buffer, playlists[selected_item], buffer_len); 192 strlcpy(buffer, playlists[selected_item], buffer_len);
193 193
194 if (buffer[0] != '.' && !(global_settings.show_filename_ext == 1 194 if (buffer[0] != '.' && !(global_settings.show_filename_ext == 1
195 || (global_settings.show_filename_ext == 3 195 || (global_settings.show_filename_ext == 3
@@ -478,7 +478,7 @@ bool catalog_add_to_a_playlist(const char* sel, int sel_attr,
478 478
479 if (add_to_playlist(playlist, new_playlist, sel, sel_attr) == 0) 479 if (add_to_playlist(playlist, new_playlist, sel, sel_attr) == 0)
480 { 480 {
481 strncpy(most_recent_playlist, playlist+playlist_dir_length+1, 481 strlcpy(most_recent_playlist, playlist+playlist_dir_length+1,
482 sizeof(most_recent_playlist)); 482 sizeof(most_recent_playlist));
483 return true; 483 return true;
484 } 484 }