diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-12-06 21:11:51 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-12-06 21:11:51 +0000 |
commit | ee15637749e293139f31a32548850cb549d3533e (patch) | |
tree | 50e0e34d086dc44e252e83231b2155c7067f1443 /apps/playlist.c | |
parent | 51d89e25940a79401b71c3a4d2e23bba88c2647f (diff) |
FS#10834 by Alex Bennee, fixing off-by-one bug in code calling format_track_path
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23879 a1c6a512-1295-4272-9138-f99709370657
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, if (playlist->filenames[index] != NULL) { dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1); - max = strlen(tmp_buf) + 1; + max = strlen(tmp_buf); } } #else @@ -1357,8 +1357,7 @@ static int get_filename(struct playlist_info* playlist, int index, int seek, if (playlist->in_ram && !control_file && max < 0) { - strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf)); - max = strlen(tmp_buf) + 1; + max = strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf)); } else if (max < 0) { |