diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index be542bd..63bd902 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -125,7 +125,7 @@ char* playlist_next(int steps) } else { strncpy(dir_buf, playlist.filename, playlist.dirlen-1); - dir_buf[playlist.dirlen] = 0; + dir_buf[playlist.dirlen-1] = 0; /* handle dos style drive letter */ if ( ':' == buf[1] ) { |