summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/cuesheet.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index 52b8c5703b..c195460205 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -364,7 +364,9 @@ void browse_cuesheet(struct cuesheet *cue)
struct cuesheet_file cue_file;
struct mp3entry *id3 = audio_current_track();
- snprintf(title, MAX_PATH, "%s: %s", cue->performer, cue->title);
+ snprintf(title, sizeof(title), "%s: %.*s", cue->performer,
+ MAX_PATH - strlen(cue->performer) - 3, cue->title);
+
gui_synclist_init(&lists, list_get_name_cb, cue, false, 2, NULL);
gui_synclist_set_nb_items(&lists, 2*cue->track_count);
gui_synclist_set_title(&lists, title, 0);