Revert "Fix cuesheet printf truncation"

This reverts commit c332180afd.

Change-Id: Ic7a85a0fe82cd13514e85011e0a5cbd79ec36c2b
This commit is contained in:
William Wilgus 2018-07-25 08:31:13 +02:00
parent c332180afd
commit 021124f868

View file

@ -364,9 +364,8 @@ void browse_cuesheet(struct cuesheet *cue)
struct cuesheet_file cue_file;
struct mp3entry *id3 = audio_current_track();
int remaining = 0;
snprintf(title, sizeof(title), "%s: %n%.*s", cue->performer,
&remaining, MAX_PATH - remaining, 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);