diff options
Diffstat (limited to 'apps/playlist.c')
-rw-r--r-- | apps/playlist.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 0c4fe9785b..fba9b6f4bb 100644 --- a/apps/playlist.c +++ b/apps/playlist.c | |||
@@ -1348,7 +1348,7 @@ static int get_filename(struct playlist_info* playlist, int index, int seek, | |||
1348 | if (playlist->filenames[index] != NULL) | 1348 | if (playlist->filenames[index] != NULL) |
1349 | { | 1349 | { |
1350 | dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1); | 1350 | dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1); |
1351 | max = strlen(tmp_buf) + 1; | 1351 | max = strlen(tmp_buf); |
1352 | } | 1352 | } |
1353 | } | 1353 | } |
1354 | #else | 1354 | #else |
@@ -1357,8 +1357,7 @@ static int get_filename(struct playlist_info* playlist, int index, int seek, | |||
1357 | 1357 | ||
1358 | if (playlist->in_ram && !control_file && max < 0) | 1358 | if (playlist->in_ram && !control_file && max < 0) |
1359 | { | 1359 | { |
1360 | strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf)); | 1360 | max = strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf)); |
1361 | max = strlen(tmp_buf) + 1; | ||
1362 | } | 1361 | } |
1363 | else if (max < 0) | 1362 | else if (max < 0) |
1364 | { | 1363 | { |